Results.php 385 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 数据结果
  4. * @author auto create
  5. */
  6. class Results
  7. {
  8. /**
  9. * 明细类型,1:预估明细,2:结算明细
  10. **/
  11. public $calc_type;
  12. /**
  13. * 奖励明细数据,KV结构。字段释义见文档:https://www.yuque.com/docs/share/7ecf8cf1-7f99-4633-a2ed-f9b6f8116af5?#
  14. **/
  15. public $field_detail;
  16. /**
  17. * 明细记录主键id
  18. **/
  19. public $id;
  20. }
  21. ?>