12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 拥有的生产组
- * @author auto create
- */
- class ProductionTeamList
- {
-
- /**
- * 生产组业务ID
- **/
- public $biz_id;
-
- /**
- * 产能类型
- **/
- public $capacity_type;
-
- /**
- * 是否删除
- **/
- public $deleted;
-
- /**
- * 员工数量
- **/
- public $emp_num;
-
- /**
- * 分组code
- **/
- public $group_code;
-
- /**
- * modifier
- **/
- public $modifier;
-
- /**
- * 生产组code
- **/
- public $production_team_code;
-
- /**
- * 生产组名称
- **/
- public $production_team_name;
-
- /**
- * 资产ID
- **/
- public $tenant_id;
- }
- ?>
|