PcCompany.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. package com.hz.employmentsite.model;
  2. import java.util.Date;
  3. public class PcCompany {
  4. private String companyID;
  5. private String siteID;
  6. private String regionCode;
  7. private Integer insuredCount;
  8. private String streetCode;
  9. private String companyName;
  10. private String companyCode;
  11. private Integer companyModel;
  12. private String workSituation;
  13. private Integer companyType;
  14. private String companyAddress;
  15. private String userName;
  16. private String userMobile;
  17. private String companyEmail;
  18. private String frName;
  19. private Date validDate;
  20. private Integer isShortage;
  21. private Integer recordStatus;
  22. private String createUserID;
  23. private Date createTime;
  24. private String modifyUserID;
  25. private Date modifyTime;
  26. private String longitude;
  27. private String latitude;
  28. private String openId;
  29. public String getCompanyID() {
  30. return companyID;
  31. }
  32. public void setCompanyID(String companyID) {
  33. this.companyID = companyID == null ? null : companyID.trim();
  34. }
  35. public String getSiteID() {
  36. return siteID;
  37. }
  38. public void setSiteID(String siteID) {
  39. this.siteID = siteID == null ? null : siteID.trim();
  40. }
  41. public String getRegionCode() {
  42. return regionCode;
  43. }
  44. public void setRegionCode(String regionCode) {
  45. this.regionCode = regionCode == null ? null : regionCode.trim();
  46. }
  47. public Integer getInsuredCount() {
  48. return insuredCount;
  49. }
  50. public void setInsuredCount(Integer insuredCount) {
  51. this.insuredCount = insuredCount;
  52. }
  53. public String getStreetCode() {
  54. return streetCode;
  55. }
  56. public void setStreetCode(String streetCode) {
  57. this.streetCode = streetCode == null ? null : streetCode.trim();
  58. }
  59. public String getCompanyName() {
  60. return companyName;
  61. }
  62. public void setCompanyName(String companyName) {
  63. this.companyName = companyName == null ? null : companyName.trim();
  64. }
  65. public String getCompanyCode() {
  66. return companyCode;
  67. }
  68. public void setCompanyCode(String companyCode) {
  69. this.companyCode = companyCode == null ? null : companyCode.trim();
  70. }
  71. public Integer getCompanyModel() {
  72. return companyModel;
  73. }
  74. public void setCompanyModel(Integer companyModel) {
  75. this.companyModel = companyModel;
  76. }
  77. public String getWorkSituation() {
  78. return workSituation;
  79. }
  80. public void setWorkSituation(String workSituation) {
  81. this.workSituation = workSituation == null ? null : workSituation.trim();
  82. }
  83. public Integer getCompanyType() {
  84. return companyType;
  85. }
  86. public void setCompanyType(Integer companyType) {
  87. this.companyType = companyType;
  88. }
  89. public String getCompanyAddress() {
  90. return companyAddress;
  91. }
  92. public void setCompanyAddress(String companyAddress) {
  93. this.companyAddress = companyAddress == null ? null : companyAddress.trim();
  94. }
  95. public String getUserName() {
  96. return userName;
  97. }
  98. public void setUserName(String userName) {
  99. this.userName = userName == null ? null : userName.trim();
  100. }
  101. public String getUserMobile() {
  102. return userMobile;
  103. }
  104. public void setUserMobile(String userMobile) {
  105. this.userMobile = userMobile == null ? null : userMobile.trim();
  106. }
  107. public String getCompanyEmail() {
  108. return companyEmail;
  109. }
  110. public void setCompanyEmail(String companyEmail) {
  111. this.companyEmail = companyEmail == null ? null : companyEmail.trim();
  112. }
  113. public String getFrName() {
  114. return frName;
  115. }
  116. public void setFrName(String frName) {
  117. this.frName = frName == null ? null : frName.trim();
  118. }
  119. public Date getValidDate() {
  120. return validDate;
  121. }
  122. public void setValidDate(Date validDate) {
  123. this.validDate = validDate;
  124. }
  125. public Integer getIsShortage() {
  126. return isShortage;
  127. }
  128. public void setIsShortage(Integer isShortage) {
  129. this.isShortage = isShortage;
  130. }
  131. public Integer getRecordStatus() {
  132. return recordStatus;
  133. }
  134. public void setRecordStatus(Integer recordStatus) {
  135. this.recordStatus = recordStatus;
  136. }
  137. public String getCreateUserID() {
  138. return createUserID;
  139. }
  140. public void setCreateUserID(String createUserID) {
  141. this.createUserID = createUserID == null ? null : createUserID.trim();
  142. }
  143. public Date getCreateTime() {
  144. return createTime;
  145. }
  146. public void setCreateTime(Date createTime) {
  147. this.createTime = createTime;
  148. }
  149. public String getModifyUserID() {
  150. return modifyUserID;
  151. }
  152. public void setModifyUserID(String modifyUserID) {
  153. this.modifyUserID = modifyUserID == null ? null : modifyUserID.trim();
  154. }
  155. public Date getModifyTime() {
  156. return modifyTime;
  157. }
  158. public void setModifyTime(Date modifyTime) {
  159. this.modifyTime = modifyTime;
  160. }
  161. public String getLongitude() {
  162. return longitude;
  163. }
  164. public void setLongitude(String longitude) {
  165. this.longitude = longitude == null ? null : longitude.trim();
  166. }
  167. public String getLatitude() {
  168. return latitude;
  169. }
  170. public void setLatitude(String latitude) {
  171. this.latitude = latitude == null ? null : latitude.trim();
  172. }
  173. public String getOpenId() {
  174. return openId;
  175. }
  176. public void setOpenId(String openId) {
  177. this.openId = openId == null ? null : openId.trim();
  178. }
  179. }