123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- package com.bosshand.virgo.api.model;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- /**
- * 合同管理
- */
- public class Contract {
- private long id;
- private String code;
- /**
- * 创建时间
- */
- @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date createDate;
- // 所属公司信息
- /**
- * 组织id
- */
- private long organizationId;
- /**
- * 组织名称
- */
- private String organizationName;
- /**
- * 部门id
- */
- private long roleId;
- /**
- * 部门名称
- */
- private String roleName;
- /**
- * 招商跟进人
- */
- private long investmentPromotion;
- /**
- * 运营跟进人
- */
- private long operator;
- /**
- * 招商跟进人名称
- */
- private String investmentPromotionName;
- /**
- * 运营跟进人名称
- */
- private String operatorName;
- // 租客信息
- /**
- * 租客类型
- */
- private Integer tenantType;
- /**
- * 企业id
- */
- private long merchantId;
- /**
- * 企业名称
- */
- private String merchantName;
- /**
- * 客户id
- */
- private long clientId;
- /**
- * 客户名称
- */
- private String clientName;
- /**
- * 租客
- */
- private String tenant;
- /**
- * 行业
- */
- private String industry;
- /**
- * 法人
- */
- private String corporation;
- /**
- * 签订人
- */
- private String signatory;
- /**
- * 租客联系人
- */
- private String tenantContactPerson;
- // 基本信息
- /**
- * 签订日
- */
- private String signingDate;
- /**
- * 开始日
- */
- private String startDate;
- /**
- * 结束日
- */
- private String endDate;
- // 滞纳金
- /**
- * 起算天数 (天)
- */
- private String lateFeesStartingDays;
- /**
- * 滞纳金比例(%/天)
- */
- private String lateFeesProportion;
- /**
- * 滞纳金上限(%)
- */
- private String lateFeesCeiling;
- /**
- * 标签ids
- */
- private String tagIds;
- private List<Tag> tagList;
- /**
- * 项目id
- */
- private long projectId;
- /**
- * 房源ids
- */
- private String projectItemTargetRoomIds;
- private Map<Long, String> roomMap;
- /**
- * 附件
- */
- private String attachment;
- /**
- * 文档
- */
- private String document;
- /**
- * 状态
- */
- private Integer status;
- private List<Integer> statusList;
- /**
- * 自定义字段
- */
- private String data;
- /**
- * 服务条款列表
- */
- private List<Clause> clauseList;
- public long getId() {
- return id;
- }
- public void setId(long id) {
- this.id = id;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public Date getCreateDate() {
- return createDate;
- }
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- public long getOrganizationId() {
- return organizationId;
- }
- public void setOrganizationId(long organizationId) {
- this.organizationId = organizationId;
- }
- public String getOrganizationName() {
- return organizationName;
- }
- public void setOrganizationName(String organizationName) {
- this.organizationName = organizationName;
- }
- public long getRoleId() {
- return roleId;
- }
- public void setRoleId(long roleId) {
- this.roleId = roleId;
- }
- public String getRoleName() {
- return roleName;
- }
- public void setRoleName(String roleName) {
- this.roleName = roleName;
- }
- public long getInvestmentPromotion() {
- return investmentPromotion;
- }
- public void setInvestmentPromotion(long investmentPromotion) {
- this.investmentPromotion = investmentPromotion;
- }
- public long getOperator() {
- return operator;
- }
- public void setOperator(long operator) {
- this.operator = operator;
- }
- public String getInvestmentPromotionName() {
- return investmentPromotionName;
- }
- public void setInvestmentPromotionName(String investmentPromotionName) {
- this.investmentPromotionName = investmentPromotionName;
- }
- public String getOperatorName() {
- return operatorName;
- }
- public void setOperatorName(String operatorName) {
- this.operatorName = operatorName;
- }
- public Integer getTenantType() {
- return tenantType;
- }
- public void setTenantType(Integer tenantType) {
- this.tenantType = tenantType;
- }
- public long getMerchantId() {
- return merchantId;
- }
- public void setMerchantId(long merchantId) {
- this.merchantId = merchantId;
- }
- public String getMerchantName() {
- return merchantName;
- }
- public void setMerchantName(String merchantName) {
- this.merchantName = merchantName;
- }
- public long getClientId() {
- return clientId;
- }
- public void setClientId(long clientId) {
- this.clientId = clientId;
- }
- public String getClientName() {
- return clientName;
- }
- public void setClientName(String clientName) {
- this.clientName = clientName;
- }
- public String getTenant() {
- return tenant;
- }
- public void setTenant(String tenant) {
- this.tenant = tenant;
- }
- public String getIndustry() {
- return industry;
- }
- public void setIndustry(String industry) {
- this.industry = industry;
- }
- public String getCorporation() {
- return corporation;
- }
- public void setCorporation(String corporation) {
- this.corporation = corporation;
- }
- public String getSignatory() {
- return signatory;
- }
- public void setSignatory(String signatory) {
- this.signatory = signatory;
- }
- public String getTenantContactPerson() {
- return tenantContactPerson;
- }
- public void setTenantContactPerson(String tenantContactPerson) {
- this.tenantContactPerson = tenantContactPerson;
- }
- public String getSigningDate() {
- return signingDate;
- }
- public void setSigningDate(String signingDate) {
- this.signingDate = signingDate;
- }
- public String getStartDate() {
- return startDate;
- }
- public void setStartDate(String startDate) {
- this.startDate = startDate;
- }
- public String getEndDate() {
- return endDate;
- }
- public void setEndDate(String endDate) {
- this.endDate = endDate;
- }
- public String getLateFeesStartingDays() {
- return lateFeesStartingDays;
- }
- public void setLateFeesStartingDays(String lateFeesStartingDays) {
- this.lateFeesStartingDays = lateFeesStartingDays;
- }
- public String getLateFeesProportion() {
- return lateFeesProportion;
- }
- public void setLateFeesProportion(String lateFeesProportion) {
- this.lateFeesProportion = lateFeesProportion;
- }
- public String getLateFeesCeiling() {
- return lateFeesCeiling;
- }
- public void setLateFeesCeiling(String lateFeesCeiling) {
- this.lateFeesCeiling = lateFeesCeiling;
- }
- public String getTagIds() {
- return tagIds;
- }
- public void setTagIds(String tagIds) {
- this.tagIds = tagIds;
- }
- public List<Tag> getTagList() {
- return tagList;
- }
- public void setTagList(List<Tag> tagList) {
- this.tagList = tagList;
- }
- public long getProjectId() {
- return projectId;
- }
- public void setProjectId(long projectId) {
- this.projectId = projectId;
- }
- public String getProjectItemTargetRoomIds() {
- return projectItemTargetRoomIds;
- }
- public void setProjectItemTargetRoomIds(String projectItemTargetRoomIds) {
- this.projectItemTargetRoomIds = projectItemTargetRoomIds;
- }
- public Map<Long, String> getRoomMap() {
- return roomMap;
- }
- public void setRoomMap(Map<Long, String> roomMap) {
- this.roomMap = roomMap;
- }
- public String getAttachment() {
- return attachment;
- }
- public void setAttachment(String attachment) {
- this.attachment = attachment;
- }
- public String getDocument() {
- return document;
- }
- public void setDocument(String document) {
- this.document = document;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public List<Integer> getStatusList() {
- return statusList;
- }
- public void setStatusList(List<Integer> statusList) {
- this.statusList = statusList;
- }
- public String getData() {
- return data;
- }
- public void setData(String data) {
- this.data = data;
- }
- public List<Clause> getClauseList() {
- return clauseList;
- }
- public void setClauseList(List<Clause> clauseList) {
- this.clauseList = clauseList;
- }
- }
|