package com.zzg.common.core.domain.entity.state;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.zzg.common.core.domain.BaseEntity;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
@TableName("state_agreement")
|
public class StateAgreement extends BaseEntity {
|
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
private String stateHouseholdId;
|
|
private String appendFileName;
|
|
//协议类型
|
private Integer agreementFileType;
|
|
//类型为模拟的时候为模拟金额/为合同的是时候为合同金额
|
private Double money;
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date effectiveDate;
|
|
@TableField("agreement_number")
|
private String agreementNumber;
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date signAt;
|
@TableLogic(value = "0", delval = "1")
|
private Integer delFlag = 0;
|
|
private Integer auditStatus;
|
|
private String workflowId;
|
|
private String fileUrl;
|
|
}
|