| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * 返回列表
- * @author auto create
- */
- class ResPSynonymDTO
- {
-
- /**
- * 区
- **/
- public $area_desc;
-
- /**
- * 市
- **/
- public $city_desc;
-
- /**
- * 创建日期
- **/
- public $crt_date;
-
- /**
- * 区域编码
- **/
- public $dict_region_code;
-
- /**
- * 企业id
- **/
- public $ent_id;
-
- /**
- * 企业名称
- **/
- public $ent_name;
-
- /**
- * 省
- **/
- public $prov_desc;
-
- /**
- * 企业唯一标识
- **/
- public $ref_ent_id;
-
- /**
- * 货主
- **/
- public $syn_own_ent_id;
-
- /**
- * 货主标识
- **/
- public $user_ent_id;
-
- /**
- * 角色
- **/
- public $user_role_type;
- }
- ?>
|