Merchant.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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. public long getId() {
  84. return id;
  85. }
  86. public void setId(long id) {
  87. this.id = id;
  88. }
  89. public String getAddress() {
  90. return address;
  91. }
  92. public void setAddress(String address) {
  93. this.address = address;
  94. }
  95. public String getBusinessScope() {
  96. return businessScope;
  97. }
  98. public void setBusinessScope(String businessScope) {
  99. this.businessScope = businessScope;
  100. }
  101. public String getCorporateScale() {
  102. return corporateScale;
  103. }
  104. public void setCorporateScale(String corporateScale) {
  105. this.corporateScale = corporateScale;
  106. }
  107. public String getCorporatePhilosophy() {
  108. return corporatePhilosophy;
  109. }
  110. public void setCorporatePhilosophy(String corporatePhilosophy) {
  111. this.corporatePhilosophy = corporatePhilosophy;
  112. }
  113. public String getCorporateCulture() {
  114. return corporateCulture;
  115. }
  116. public void setCorporateCulture(String corporateCulture) {
  117. this.corporateCulture = corporateCulture;
  118. }
  119. public String getContactInformation() {
  120. return contactInformation;
  121. }
  122. public void setContactInformation(String contactInformation) {
  123. this.contactInformation = contactInformation;
  124. }
  125. public String getFax() {
  126. return fax;
  127. }
  128. public void setFax(String fax) {
  129. this.fax = fax;
  130. }
  131. public String getEmail() {
  132. return email;
  133. }
  134. public void setEmail(String email) {
  135. this.email = email;
  136. }
  137. public long getOrganizationId() {
  138. return organizationId;
  139. }
  140. public void setOrganizationId(long organizationId) {
  141. this.organizationId = organizationId;
  142. }
  143. public long getProjectId() {
  144. return projectId;
  145. }
  146. public void setProjectId(long projectId) {
  147. this.projectId = projectId;
  148. }
  149. public String getIndustryType() {
  150. return industryType;
  151. }
  152. public void setIndustryType(String industryType) {
  153. this.industryType = industryType;
  154. }
  155. public String getName() {
  156. return name;
  157. }
  158. public void setName(String name) {
  159. this.name = name;
  160. }
  161. public String getLegalPerson() {
  162. return legalPerson;
  163. }
  164. public void setLegalPerson(String legalPerson) {
  165. this.legalPerson = legalPerson;
  166. }
  167. public String getEstablishDate() {
  168. return establishDate;
  169. }
  170. public void setEstablishDate(String establishDate) {
  171. this.establishDate = establishDate;
  172. }
  173. public String getBusinessTerm() {
  174. return businessTerm;
  175. }
  176. public void setBusinessTerm(String businessTerm) {
  177. this.businessTerm = businessTerm;
  178. }
  179. public String getRegisteredCapital() {
  180. return registeredCapital;
  181. }
  182. public void setRegisteredCapital(String registeredCapital) {
  183. this.registeredCapital = registeredCapital;
  184. }
  185. public Integer getStatus() {
  186. return status;
  187. }
  188. public void setStatus(Integer status) {
  189. this.status = status;
  190. }
  191. public String getData() {
  192. return data;
  193. }
  194. public void setData(String data) {
  195. this.data = data;
  196. }
  197. public String getRoomIds() {
  198. return roomIds;
  199. }
  200. public void setRoomIds(String roomIds) {
  201. this.roomIds = roomIds;
  202. }
  203. }