package com.by4cloud.platformx.business.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class ContractDelayOutPageVo {
|
|
@Schema(description = "合同名称")
|
private String contractName;
|
|
@Schema(description = "合同名称甲方")
|
private String partyA;
|
|
@Schema(description = "合同名称乙方")
|
private String partyB;
|
|
@Schema(description = "延期天数")
|
private Integer delayDay;
|
|
@Schema(description = "延期单据名称")
|
private String delayAttNames;
|
|
@Schema(description = "延期单据路径")
|
private String delayAttPaths;
|
|
@Schema(description = "提交账号")
|
private String applyName;
|
|
@Schema(description = "提交时间")
|
private Date applyTime;
|
|
@Schema(description = "状态")
|
private String delayStatus;
|
|
}
|