| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.persistence.Column; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ContractPaymentScheduleProcessAddDTO { |
| | | |
| | | @Schema(description = "阶段ID") |
| | | @Column(columnDefinition = "bigint comment '阶段ID'") |
| | | private Long scheduleId; |
| | | |
| | | @Schema(description = "履约时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Column(columnDefinition = "date comment '履约时间'") |
| | | private Date processDate; |
| | | |
| | | @Schema(description = "履约单据名称") |
| | | private String outBoundAttNames; |
| | | |
| | | @Schema(description = "履约单据路径") |
| | | private String outBoundAttPaths; |
| | | |
| | | private List<Long> contractOutBoundIds; |
| | | |
| | | } |