Merchant.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. package com.bosshand.virgo.api.model;
  2. /**
  3. * 客商管理
  4. */
  5. public class Merchant {
  6. private long id;
  7. /**
  8. * 企业地址
  9. */
  10. private String address;
  11. /**
  12. * 经营范围
  13. */
  14. private String businessScope;
  15. /**
  16. * 企业规模
  17. */
  18. private String corporateScale;
  19. /**
  20. * 企业理念
  21. */
  22. private String corporatePhilosophy;
  23. /**
  24. * 企业文化
  25. */
  26. private String corporateCulture;
  27. /**
  28. * 联系方式
  29. */
  30. private String contactInformation;
  31. /**
  32. * 传真
  33. */
  34. private String fax;
  35. /**
  36. * 邮箱
  37. */
  38. private String email;
  39. /**
  40. * 组织id
  41. */
  42. private long organizationId;
  43. /**
  44. * 项目id
  45. */
  46. private long projectId;
  47. /**
  48. * 行业分类
  49. */
  50. private String industryType;
  51. /**
  52. * 企业名称
  53. */
  54. private String name;
  55. /**
  56. * 法人
  57. */
  58. private String legalPerson;
  59. /**
  60. * 成立日期
  61. */
  62. private String establishDate;
  63. /**
  64. * 营业期限
  65. */
  66. private String businessTerm;
  67. /**
  68. * 注册资本
  69. */
  70. private String registeredCapital;
  71. /**
  72. * 状态
  73. */
  74. private Integer status;
  75. /**
  76. * 自定义字段
  77. */
  78. private String data;
  79. /**
  80. * 房间ids
  81. */
  82. private String roomIds;
  83. /**
  84. * 入驻时间
  85. */
  86. private String entryTime;
  87. public long getId() {
  88. return id;
  89. }
  90. public void setId(long id) {
  91. this.id = id;
  92. }
  93. public String getAddress() {
  94. return address;
  95. }
  96. public void setAddress(String address) {
  97. this.address = address;
  98. }
  99. public String getBusinessScope() {
  100. return businessScope;
  101. }
  102. public void setBusinessScope(String businessScope) {
  103. this.businessScope = businessScope;
  104. }
  105. public String getCorporateScale() {
  106. return corporateScale;
  107. }
  108. public void setCorporateScale(String corporateScale) {
  109. this.corporateScale = corporateScale;
  110. }
  111. public String getCorporatePhilosophy() {
  112. return corporatePhilosophy;
  113. }
  114. public void setCorporatePhilosophy(String corporatePhilosophy) {
  115. this.corporatePhilosophy = corporatePhilosophy;
  116. }
  117. public String getCorporateCulture() {
  118. return corporateCulture;
  119. }
  120. public void setCorporateCulture(String corporateCulture) {
  121. this.corporateCulture = corporateCulture;
  122. }
  123. public String getContactInformation() {
  124. return contactInformation;
  125. }
  126. public void setContactInformation(String contactInformation) {
  127. this.contactInformation = contactInformation;
  128. }
  129. public String getFax() {
  130. return fax;
  131. }
  132. public void setFax(String fax) {
  133. this.fax = fax;
  134. }
  135. public String getEmail() {
  136. return email;
  137. }
  138. public void setEmail(String email) {
  139. this.email = email;
  140. }
  141. public long getOrganizationId() {
  142. return organizationId;
  143. }
  144. public void setOrganizationId(long organizationId) {
  145. this.organizationId = organizationId;
  146. }
  147. public long getProjectId() {
  148. return projectId;
  149. }
  150. public void setProjectId(long projectId) {
  151. this.projectId = projectId;
  152. }
  153. public String getIndustryType() {
  154. return industryType;
  155. }
  156. public void setIndustryType(String industryType) {
  157. this.industryType = industryType;
  158. }
  159. public String getName() {
  160. return name;
  161. }
  162. public void setName(String name) {
  163. this.name = name;
  164. }
  165. public String getLegalPerson() {
  166. return legalPerson;
  167. }
  168. public void setLegalPerson(String legalPerson) {
  169. this.legalPerson = legalPerson;
  170. }
  171. public String getEstablishDate() {
  172. return establishDate;
  173. }
  174. public void setEstablishDate(String establishDate) {
  175. this.establishDate = establishDate;
  176. }
  177. public String getBusinessTerm() {
  178. return businessTerm;
  179. }
  180. public void setBusinessTerm(String businessTerm) {
  181. this.businessTerm = businessTerm;
  182. }
  183. public String getRegisteredCapital() {
  184. return registeredCapital;
  185. }
  186. public void setRegisteredCapital(String registeredCapital) {
  187. this.registeredCapital = registeredCapital;
  188. }
  189. public Integer getStatus() {
  190. return status;
  191. }
  192. public void setStatus(Integer status) {
  193. this.status = status;
  194. }
  195. public String getData() {
  196. return data;
  197. }
  198. public void setData(String data) {
  199. this.data = data;
  200. }
  201. public String getRoomIds() {
  202. return roomIds;
  203. }
  204. public void setRoomIds(String roomIds) {
  205. this.roomIds = roomIds;
  206. }
  207. public String getEntryTime() {
  208. return entryTime;
  209. }
  210. public void setEntryTime(String entryTime) {
  211. this.entryTime = entryTime;
  212. }
  213. }