You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
766 B
43 lines
766 B
package com.xmomen.module.base.model;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
import lombok.Data;
|
|
|
|
public @Data class UpdateContract implements Serializable {
|
|
|
|
// 合同名称
|
|
private String contractName;
|
|
|
|
// 合同编号
|
|
private String contractCode;
|
|
|
|
// 成员ID
|
|
private Integer cdMemberId;
|
|
|
|
// 公司ID
|
|
private Integer cdCompanyId;
|
|
|
|
// 范围
|
|
private Integer scope;
|
|
|
|
// 合同价格
|
|
private BigDecimal contractPrice;
|
|
|
|
// 开始时间
|
|
private Date beginTime;
|
|
|
|
// 结束时间
|
|
private Date endTime;
|
|
|
|
// 是否审核
|
|
private Integer isAuditor;
|
|
|
|
// 合同项目列表
|
|
private List<CreateContractItem> contractItemList;
|
|
|
|
}
|