PUserEntInfoDTO.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. /**
  3. * 返回对象
  4. * @author auto create
  5. */
  6. class PUserEntInfoDTO
  7. {
  8. /**
  9. * 市
  10. **/
  11. public $area_name;
  12. /**
  13. * 县
  14. **/
  15. public $city_name;
  16. /**
  17. * 所在地编码
  18. **/
  19. public $dict_region_code;
  20. /**
  21. * 所在地明细
  22. **/
  23. public $dict_region_detail;
  24. /**
  25. * 所属管理机构
  26. **/
  27. public $direct_manage;
  28. /**
  29. * 拼音缩写
  30. **/
  31. public $ent_capital_name;
  32. /**
  33. * 企业id
  34. **/
  35. public $ent_id;
  36. /**
  37. * 企业名称
  38. **/
  39. public $ent_name;
  40. /**
  41. * 企业机构详细类别
  42. **/
  43. public $ent_org_type;
  44. /**
  45. * 是否入网
  46. **/
  47. public $is_network;
  48. /**
  49. * 是否法人
  50. **/
  51. public $legal_org_flag;
  52. /**
  53. * 注册地明细
  54. **/
  55. public $org_code;
  56. /**
  57. * 省
  58. **/
  59. public $prov_name;
  60. /**
  61. * 企业唯一标识
  62. **/
  63. public $ref_ent_id;
  64. /**
  65. * 注册地编码
  66. **/
  67. public $reg_region_code;
  68. /**
  69. * 所在地明细
  70. **/
  71. public $reg_region_detail;
  72. /**
  73. * 状态1.使用中0.已废除
  74. **/
  75. public $status;
  76. /**
  77. * 企业类型
  78. **/
  79. public $user_role_type;
  80. /**
  81. * 企业类型编码
  82. **/
  83. public $user_role_type_str;
  84. }
  85. ?>