Contract.java 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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. * 房源ids
  124. */
  125. private String projectItemTargetRoomIds;
  126. private Map<Long, String> roomMap;
  127. /**
  128. * 附件
  129. */
  130. private String attachment;
  131. /**
  132. * 文档
  133. */
  134. private String document;
  135. /**
  136. * 自定义字段
  137. */
  138. private String data;
  139. /**
  140. * 服务条款列表
  141. */
  142. private List<Clause> clauseList;
  143. public long getId() {
  144. return id;
  145. }
  146. public void setId(long id) {
  147. this.id = id;
  148. }
  149. public String getCode() {
  150. return code;
  151. }
  152. public void setCode(String code) {
  153. this.code = code;
  154. }
  155. public Date getCreateDate() {
  156. return createDate;
  157. }
  158. public void setCreateDate(Date createDate) {
  159. this.createDate = createDate;
  160. }
  161. public long getOrganizationId() {
  162. return organizationId;
  163. }
  164. public void setOrganizationId(long organizationId) {
  165. this.organizationId = organizationId;
  166. }
  167. public String getOrganizationName() {
  168. return organizationName;
  169. }
  170. public void setOrganizationName(String organizationName) {
  171. this.organizationName = organizationName;
  172. }
  173. public long getRoleId() {
  174. return roleId;
  175. }
  176. public void setRoleId(long roleId) {
  177. this.roleId = roleId;
  178. }
  179. public String getRoleName() {
  180. return roleName;
  181. }
  182. public void setRoleName(String roleName) {
  183. this.roleName = roleName;
  184. }
  185. public long getInvestmentPromotion() {
  186. return investmentPromotion;
  187. }
  188. public void setInvestmentPromotion(long investmentPromotion) {
  189. this.investmentPromotion = investmentPromotion;
  190. }
  191. public long getOperator() {
  192. return operator;
  193. }
  194. public void setOperator(long operator) {
  195. this.operator = operator;
  196. }
  197. public String getInvestmentPromotionName() {
  198. return investmentPromotionName;
  199. }
  200. public void setInvestmentPromotionName(String investmentPromotionName) {
  201. this.investmentPromotionName = investmentPromotionName;
  202. }
  203. public String getOperatorName() {
  204. return operatorName;
  205. }
  206. public void setOperatorName(String operatorName) {
  207. this.operatorName = operatorName;
  208. }
  209. public Integer getTenantType() {
  210. return tenantType;
  211. }
  212. public void setTenantType(Integer tenantType) {
  213. this.tenantType = tenantType;
  214. }
  215. public long getMerchantId() {
  216. return merchantId;
  217. }
  218. public void setMerchantId(long merchantId) {
  219. this.merchantId = merchantId;
  220. }
  221. public String getMerchantName() {
  222. return merchantName;
  223. }
  224. public void setMerchantName(String merchantName) {
  225. this.merchantName = merchantName;
  226. }
  227. public long getClientId() {
  228. return clientId;
  229. }
  230. public void setClientId(long clientId) {
  231. this.clientId = clientId;
  232. }
  233. public String getClientName() {
  234. return clientName;
  235. }
  236. public void setClientName(String clientName) {
  237. this.clientName = clientName;
  238. }
  239. public String getTenant() {
  240. return tenant;
  241. }
  242. public void setTenant(String tenant) {
  243. this.tenant = tenant;
  244. }
  245. public String getIndustry() {
  246. return industry;
  247. }
  248. public void setIndustry(String industry) {
  249. this.industry = industry;
  250. }
  251. public String getCorporation() {
  252. return corporation;
  253. }
  254. public void setCorporation(String corporation) {
  255. this.corporation = corporation;
  256. }
  257. public String getSignatory() {
  258. return signatory;
  259. }
  260. public void setSignatory(String signatory) {
  261. this.signatory = signatory;
  262. }
  263. public String getTenantContactPerson() {
  264. return tenantContactPerson;
  265. }
  266. public void setTenantContactPerson(String tenantContactPerson) {
  267. this.tenantContactPerson = tenantContactPerson;
  268. }
  269. public String getSigningDate() {
  270. return signingDate;
  271. }
  272. public void setSigningDate(String signingDate) {
  273. this.signingDate = signingDate;
  274. }
  275. public String getStartDate() {
  276. return startDate;
  277. }
  278. public void setStartDate(String startDate) {
  279. this.startDate = startDate;
  280. }
  281. public String getEndDate() {
  282. return endDate;
  283. }
  284. public void setEndDate(String endDate) {
  285. this.endDate = endDate;
  286. }
  287. public String getLateFeesStartingDays() {
  288. return lateFeesStartingDays;
  289. }
  290. public void setLateFeesStartingDays(String lateFeesStartingDays) {
  291. this.lateFeesStartingDays = lateFeesStartingDays;
  292. }
  293. public String getLateFeesProportion() {
  294. return lateFeesProportion;
  295. }
  296. public void setLateFeesProportion(String lateFeesProportion) {
  297. this.lateFeesProportion = lateFeesProportion;
  298. }
  299. public String getLateFeesCeiling() {
  300. return lateFeesCeiling;
  301. }
  302. public void setLateFeesCeiling(String lateFeesCeiling) {
  303. this.lateFeesCeiling = lateFeesCeiling;
  304. }
  305. public String getTagIds() {
  306. return tagIds;
  307. }
  308. public void setTagIds(String tagIds) {
  309. this.tagIds = tagIds;
  310. }
  311. public List<Tag> getTagList() {
  312. return tagList;
  313. }
  314. public void setTagList(List<Tag> tagList) {
  315. this.tagList = tagList;
  316. }
  317. public String getProjectItemTargetRoomIds() {
  318. return projectItemTargetRoomIds;
  319. }
  320. public void setProjectItemTargetRoomIds(String projectItemTargetRoomIds) {
  321. this.projectItemTargetRoomIds = projectItemTargetRoomIds;
  322. }
  323. public Map<Long, String> getRoomMap() {
  324. return roomMap;
  325. }
  326. public void setRoomMap(Map<Long, String> roomMap) {
  327. this.roomMap = roomMap;
  328. }
  329. public String getAttachment() {
  330. return attachment;
  331. }
  332. public void setAttachment(String attachment) {
  333. this.attachment = attachment;
  334. }
  335. public String getDocument() {
  336. return document;
  337. }
  338. public void setDocument(String document) {
  339. this.document = document;
  340. }
  341. public String getData() {
  342. return data;
  343. }
  344. public void setData(String data) {
  345. this.data = data;
  346. }
  347. public List<Clause> getClauseList() {
  348. return clauseList;
  349. }
  350. public void setClauseList(List<Clause> clauseList) {
  351. this.clauseList = clauseList;
  352. }
  353. }