123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 成本中心对象
- * @author auto create
- */
- class OpenCostCenterDo
- {
-
- /**
- * 企业id
- **/
- public $corpid;
-
- /**
- * 商旅成本中心id
- **/
- public $id;
-
- /**
- * 成本中心名称
- **/
- public $name;
-
- /**
- * 成本中心编号
- **/
- public $number;
- }
- ?>
|