ResPSynonymDTO.php 621 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 返回列表
  4. * @author auto create
  5. */
  6. class ResPSynonymDTO
  7. {
  8. /**
  9. * 区
  10. **/
  11. public $area_desc;
  12. /**
  13. * 市
  14. **/
  15. public $city_desc;
  16. /**
  17. * 创建日期
  18. **/
  19. public $crt_date;
  20. /**
  21. * 区域编码
  22. **/
  23. public $dict_region_code;
  24. /**
  25. * 企业id
  26. **/
  27. public $ent_id;
  28. /**
  29. * 企业名称
  30. **/
  31. public $ent_name;
  32. /**
  33. * 省
  34. **/
  35. public $prov_desc;
  36. /**
  37. * 企业唯一标识
  38. **/
  39. public $ref_ent_id;
  40. /**
  41. * 货主
  42. **/
  43. public $syn_own_ent_id;
  44. /**
  45. * 货主标识
  46. **/
  47. public $user_ent_id;
  48. /**
  49. * 角色
  50. **/
  51. public $user_role_type;
  52. }
  53. ?>