1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * 成本中心列表
- * @author auto create
- */
- class OpenCostCenterQueryRs
- {
-
- /**
- * 绑定支付宝账号
- **/
- public $alipay_no;
-
- /**
- * 企业id
- **/
- public $corpid;
-
- /**
- * 绑定人员信息
- **/
- public $entity_list;
-
- /**
- * 商旅成本中心id
- **/
- public $id;
-
- /**
- * 成本中心编号
- **/
- public $number;
-
- /**
- * 适用范围: 1全员,2部分员工
- **/
- public $scope;
-
- /**
- * 第三方成本中心id
- **/
- public $thirdpart_id;
-
- /**
- * 成本中心名称
- **/
- public $title;
- }
- ?>
|