shiyunteng
昨天 fca21683e1b5b906d2514082ddfbae8eb820c9ea
platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/dto/ContractAddDTO.java
@@ -1,11 +1,9 @@
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;
@@ -60,8 +58,11 @@
   @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;
@@ -71,6 +72,9 @@
   @Schema(description = "备注")
   private String remark;
   @Schema(description = "模版ID")
   private Long templateId;
   private List<ContractPaymentScheduleAddDTO> contractPaymentSchedule;
   private List<ContractSubjectMatterAddDTO> contractSubjectMatter;