ProductionTeamList.php 569 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * 拥有的生产组
  4. * @author auto create
  5. */
  6. class ProductionTeamList
  7. {
  8. /**
  9. * 生产组业务ID
  10. **/
  11. public $biz_id;
  12. /**
  13. * 产能类型
  14. **/
  15. public $capacity_type;
  16. /**
  17. * 是否删除
  18. **/
  19. public $deleted;
  20. /**
  21. * 员工数量
  22. **/
  23. public $emp_num;
  24. /**
  25. * 分组code
  26. **/
  27. public $group_code;
  28. /**
  29. * modifier
  30. **/
  31. public $modifier;
  32. /**
  33. * 生产组code
  34. **/
  35. public $production_team_code;
  36. /**
  37. * 生产组名称
  38. **/
  39. public $production_team_name;
  40. /**
  41. * 资产ID
  42. **/
  43. public $tenant_id;
  44. }
  45. ?>