RollUpSummaryFields.php 251 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 对MasterDetail类型有效:roll-up summary字段列表
  4. * @author auto create
  5. */
  6. class RollUpSummaryFields
  7. {
  8. /**
  9. * 汇总方法
  10. **/
  11. public $aggregator;
  12. /**
  13. * 需要汇总的明细内字段名
  14. **/
  15. public $name;
  16. }
  17. ?>