Contract.java 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. package com.bosshand.virgo.api.model;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import java.util.Date;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * 合同管理
  8. */
  9. public class Contract {
  10. private long id;
  11. private String code;
  12. /**
  13. * 创建时间
  14. */
  15. @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  16. private Date createDate;
  17. // 所属公司信息
  18. /**
  19. * 组织id
  20. */
  21. private long organizationId;
  22. /**
  23. * 组织名称
  24. */
  25. private String organizationName;
  26. /**
  27. * 部门id
  28. */
  29. private long roleId;
  30. /**
  31. * 部门名称
  32. */
  33. private String roleName;
  34. /**
  35. * 招商跟进人
  36. */
  37. private long investmentPromotion;
  38. /**
  39. * 运营跟进人
  40. */
  41. private long operator;
  42. /**
  43. * 招商跟进人名称
  44. */
  45. private String investmentPromotionName;
  46. /**
  47. * 运营跟进人名称
  48. */
  49. private String operatorName;
  50. // 租客信息
  51. /**
  52. * 租客类型
  53. */
  54. private Integer tenantType;
  55. /**
  56. * 企业id
  57. */
  58. private long merchantId;
  59. /**
  60. * 企业名称
  61. */
  62. private String merchantName;
  63. /**
  64. * 客户id
  65. */
  66. private long clientId;
  67. /**
  68. * 客户名称
  69. */
  70. private String clientName;
  71. /**
  72. * 租客
  73. */
  74. private String tenant;
  75. /**
  76. * 行业
  77. */
  78. private String industry;
  79. /**
  80. * 法人
  81. */
  82. private String corporation;
  83. /**
  84. * 签订人
  85. */
  86. private String signatory;
  87. /**
  88. * 租客联系人
  89. */
  90. private String tenantContactPerson;
  91. // 基本信息
  92. /**
  93. * 签订日
  94. */
  95. private String signingDate;
  96. /**
  97. * 开始日
  98. */
  99. private String startDate;
  100. /**
  101. * 结束日
  102. */
  103. private String endDate;
  104. // 滞纳金
  105. /**
  106. * 起算天数 (天)
  107. */
  108. private String lateFeesStartingDays;
  109. /**
  110. * 滞纳金比例(%/天)
  111. */
  112. private String lateFeesProportion;
  113. /**
  114. * 滞纳金上限(%)
  115. */
  116. private String lateFeesCeiling;
  117. /**
  118. * 标签ids
  119. */
  120. private String tagIds;
  121. private List<Tag> tagList;
  122. /**
  123. * 项目id
  124. */
  125. private long projectId;
  126. /**
  127. * 房源ids
  128. */
  129. private String projectItemTargetRoomIds;
  130. private Map<Long, String> roomMap;
  131. /**
  132. * 附件
  133. */
  134. private String attachment;
  135. /**
  136. * 文档
  137. */
  138. private String document;
  139. /**
  140. * 状态
  141. */
  142. private Integer status;
  143. private List<Integer> statusList;
  144. /**
  145. * 自定义字段
  146. */
  147. private String data;
  148. /**
  149. * 服务条款列表
  150. */
  151. private List<Clause> clauseList;
  152. public long getId() {
  153. return id;
  154. }
  155. public void setId(long id) {
  156. this.id = id;
  157. }
  158. public String getCode() {
  159. return code;
  160. }
  161. public void setCode(String code) {
  162. this.code = code;
  163. }
  164. public Date getCreateDate() {
  165. return createDate;
  166. }
  167. public void setCreateDate(Date createDate) {
  168. this.createDate = createDate;
  169. }
  170. public long getOrganizationId() {
  171. return organizationId;
  172. }
  173. public void setOrganizationId(long organizationId) {
  174. this.organizationId = organizationId;
  175. }
  176. public String getOrganizationName() {
  177. return organizationName;
  178. }
  179. public void setOrganizationName(String organizationName) {
  180. this.organizationName = organizationName;
  181. }
  182. public long getRoleId() {
  183. return roleId;
  184. }
  185. public void setRoleId(long roleId) {
  186. this.roleId = roleId;
  187. }
  188. public String getRoleName() {
  189. return roleName;
  190. }
  191. public void setRoleName(String roleName) {
  192. this.roleName = roleName;
  193. }
  194. public long getInvestmentPromotion() {
  195. return investmentPromotion;
  196. }
  197. public void setInvestmentPromotion(long investmentPromotion) {
  198. this.investmentPromotion = investmentPromotion;
  199. }
  200. public long getOperator() {
  201. return operator;
  202. }
  203. public void setOperator(long operator) {
  204. this.operator = operator;
  205. }
  206. public String getInvestmentPromotionName() {
  207. return investmentPromotionName;
  208. }
  209. public void setInvestmentPromotionName(String investmentPromotionName) {
  210. this.investmentPromotionName = investmentPromotionName;
  211. }
  212. public String getOperatorName() {
  213. return operatorName;
  214. }
  215. public void setOperatorName(String operatorName) {
  216. this.operatorName = operatorName;
  217. }
  218. public Integer getTenantType() {
  219. return tenantType;
  220. }
  221. public void setTenantType(Integer tenantType) {
  222. this.tenantType = tenantType;
  223. }
  224. public long getMerchantId() {
  225. return merchantId;
  226. }
  227. public void setMerchantId(long merchantId) {
  228. this.merchantId = merchantId;
  229. }
  230. public String getMerchantName() {
  231. return merchantName;
  232. }
  233. public void setMerchantName(String merchantName) {
  234. this.merchantName = merchantName;
  235. }
  236. public long getClientId() {
  237. return clientId;
  238. }
  239. public void setClientId(long clientId) {
  240. this.clientId = clientId;
  241. }
  242. public String getClientName() {
  243. return clientName;
  244. }
  245. public void setClientName(String clientName) {
  246. this.clientName = clientName;
  247. }
  248. public String getTenant() {
  249. return tenant;
  250. }
  251. public void setTenant(String tenant) {
  252. this.tenant = tenant;
  253. }
  254. public String getIndustry() {
  255. return industry;
  256. }
  257. public void setIndustry(String industry) {
  258. this.industry = industry;
  259. }
  260. public String getCorporation() {
  261. return corporation;
  262. }
  263. public void setCorporation(String corporation) {
  264. this.corporation = corporation;
  265. }
  266. public String getSignatory() {
  267. return signatory;
  268. }
  269. public void setSignatory(String signatory) {
  270. this.signatory = signatory;
  271. }
  272. public String getTenantContactPerson() {
  273. return tenantContactPerson;
  274. }
  275. public void setTenantContactPerson(String tenantContactPerson) {
  276. this.tenantContactPerson = tenantContactPerson;
  277. }
  278. public String getSigningDate() {
  279. return signingDate;
  280. }
  281. public void setSigningDate(String signingDate) {
  282. this.signingDate = signingDate;
  283. }
  284. public String getStartDate() {
  285. return startDate;
  286. }
  287. public void setStartDate(String startDate) {
  288. this.startDate = startDate;
  289. }
  290. public String getEndDate() {
  291. return endDate;
  292. }
  293. public void setEndDate(String endDate) {
  294. this.endDate = endDate;
  295. }
  296. public String getLateFeesStartingDays() {
  297. return lateFeesStartingDays;
  298. }
  299. public void setLateFeesStartingDays(String lateFeesStartingDays) {
  300. this.lateFeesStartingDays = lateFeesStartingDays;
  301. }
  302. public String getLateFeesProportion() {
  303. return lateFeesProportion;
  304. }
  305. public void setLateFeesProportion(String lateFeesProportion) {
  306. this.lateFeesProportion = lateFeesProportion;
  307. }
  308. public String getLateFeesCeiling() {
  309. return lateFeesCeiling;
  310. }
  311. public void setLateFeesCeiling(String lateFeesCeiling) {
  312. this.lateFeesCeiling = lateFeesCeiling;
  313. }
  314. public String getTagIds() {
  315. return tagIds;
  316. }
  317. public void setTagIds(String tagIds) {
  318. this.tagIds = tagIds;
  319. }
  320. public List<Tag> getTagList() {
  321. return tagList;
  322. }
  323. public void setTagList(List<Tag> tagList) {
  324. this.tagList = tagList;
  325. }
  326. public long getProjectId() {
  327. return projectId;
  328. }
  329. public void setProjectId(long projectId) {
  330. this.projectId = projectId;
  331. }
  332. public String getProjectItemTargetRoomIds() {
  333. return projectItemTargetRoomIds;
  334. }
  335. public void setProjectItemTargetRoomIds(String projectItemTargetRoomIds) {
  336. this.projectItemTargetRoomIds = projectItemTargetRoomIds;
  337. }
  338. public Map<Long, String> getRoomMap() {
  339. return roomMap;
  340. }
  341. public void setRoomMap(Map<Long, String> roomMap) {
  342. this.roomMap = roomMap;
  343. }
  344. public String getAttachment() {
  345. return attachment;
  346. }
  347. public void setAttachment(String attachment) {
  348. this.attachment = attachment;
  349. }
  350. public String getDocument() {
  351. return document;
  352. }
  353. public void setDocument(String document) {
  354. this.document = document;
  355. }
  356. public Integer getStatus() {
  357. return status;
  358. }
  359. public void setStatus(Integer status) {
  360. this.status = status;
  361. }
  362. public List<Integer> getStatusList() {
  363. return statusList;
  364. }
  365. public void setStatusList(List<Integer> statusList) {
  366. this.statusList = statusList;
  367. }
  368. public String getData() {
  369. return data;
  370. }
  371. public void setData(String data) {
  372. this.data = data;
  373. }
  374. public List<Clause> getClauseList() {
  375. return clauseList;
  376. }
  377. public void setClauseList(List<Clause> clauseList) {
  378. this.clauseList = clauseList;
  379. }
  380. }