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.

61 lines
1010 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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 CreateContract implements Serializable {
/**
* 合同名称
*/
private String contractName;
/**
* 合同编号
*/
private String contractCode;
/**
* 合同价的客户
*/
private Integer cdMemberId;
/**
* 合同价的单位
*/
private Integer cdCompanyId;
/**
* 1-部分产品2-全部产品
*/
private Integer scope;
/**
* 仅当适用范围为全部产品时适用
*/
private BigDecimal contractPrice;
/**
* 合同开始时间
*/
private Date beginTime;
/**
* 合同结束时间
*/
private Date endTime;
/**
* 0-未审核1-审核
*/
private Integer isAuditor;
/**
* 合同明细
*/
private List<CreateContractItem> contractItemList;
}