Contract.java 8.1 KB

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