1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * details
- * @author auto create
- */
- class OpenIndustryDeptInfo
- {
-
- /**
- * 传统农村类型
- **/
- public $contact_type;
-
- /**
- * 部门ID
- **/
- public $dept_id;
-
- /**
- * 户
- **/
- public $dept_type;
-
- /**
- * 部门属性信息
- **/
- public $feature;
-
- /**
- * 部门名称
- **/
- public $name;
- }
- ?>
|