| | |
| | | package com.by4cloud.platformx.business.dto; |
| | | |
| | | import com.by4cloud.platformx.business.entity.ContractPaymentSchedule; |
| | | import com.by4cloud.platformx.business.entity.ContractSubjectMatter; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.persistence.Column; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | @Schema(description = "生效日期") |
| | | private String effectiveDate; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @Schema(description = "交付周期") |
| | | private Integer deliveryCycle; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "到期日期") |
| | | private String expirationDate; |
| | | |
| | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "模版ID") |
| | | private Long templateId; |
| | | |
| | | private List<ContractPaymentScheduleAddDTO> contractPaymentSchedule; |
| | | |
| | | private List<ContractSubjectMatterAddDTO> contractSubjectMatter; |