OpenCostCenterQueryRs.php 554 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * 成本中心列表
  4. * @author auto create
  5. */
  6. class OpenCostCenterQueryRs
  7. {
  8. /**
  9. * 绑定支付宝账号
  10. **/
  11. public $alipay_no;
  12. /**
  13. * 企业id
  14. **/
  15. public $corpid;
  16. /**
  17. * 绑定人员信息
  18. **/
  19. public $entity_list;
  20. /**
  21. * 商旅成本中心id
  22. **/
  23. public $id;
  24. /**
  25. * 成本中心编号
  26. **/
  27. public $number;
  28. /**
  29. * 适用范围: 1全员,2部分员工
  30. **/
  31. public $scope;
  32. /**
  33. * 第三方成本中心id
  34. **/
  35. public $thirdpart_id;
  36. /**
  37. * 成本中心名称
  38. **/
  39. public $title;
  40. }
  41. ?>