package com.by4cloud.platformx.business.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
@Data
|
public class DelayOutApprovalDTO {
|
|
@Schema(description = "合同ID")
|
private Long contractId;
|
|
@Schema(description = "延期天数")
|
private Integer delayDay;
|
|
@Schema(description = "延期单据名称")
|
private String delayAttNames;
|
|
@Schema(description = "延期单据路径")
|
private String delayAttPaths;
|
|
}
|