platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/ContractDetailVo.java
@@ -1,7 +1,5 @@
package com.by4cloud.platformx.business.vo;
import com.by4cloud.platformx.business.dto.ContractPaymentScheduleAddDTO;
import com.by4cloud.platformx.business.dto.ContractSubjectMatterAddDTO;
import com.by4cloud.platformx.business.entity.ContractPaymentSchedule;
import com.by4cloud.platformx.business.entity.ContractSubjectMatter;
import com.fasterxml.jackson.annotation.JsonFormat;
@@ -9,6 +7,7 @@
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.util.List;
@Data
@@ -19,11 +18,17 @@
   @Schema(description = "合同名称")
   private String contractName;
   @Schema(description = "合同名称")
   private String contractNo;
   @Schema(description = "甲方id")
   private Long partyAId;
   @Schema(description = "甲方名称")
   private String partyA;
   @Schema(description = "甲方税号")
   private String partyAOrgCode;
   @Schema(description = "乙方id")
   private Long partyBId;
@@ -76,6 +81,78 @@
   @Schema(description = "模版ID")
   private Long templateId;
   @Schema(description = "合同分类")
   private String contractCategory;
   @Schema(description = "签订地点")
   private String signPlace;
   @Schema(description = "执行周期 1/周 2/月 3/季度 4/半年 5/年")
   private String execFrequency;
   @Schema(description = "执行次数")
   private Integer execTimes;
   @Schema(description = "执行日期后多少天生成应收")
   private Integer execDay;
   @Schema(description = "环境")
   private String environment;
   @Schema(description = "标准")
   private String standard;
   @Schema(description = "质保期 使用月数")
   private BigDecimal useMonth;
   @Schema(description = "质保期 发货后月数")
   private BigDecimal afterShipMonth;
   @Schema(description = "货运方式")
   private String shipMethod;
   @Schema(description = "货运地址")
   private String shipAddress;
   @Schema(description = "包装")
   private String packaging;
   @Schema(description = "维修或换货期限")
   private BigDecimal repairPeriod;
   @Schema(description = "维修或换货 违约金")
   private BigDecimal repairBreachAmount;
   @Schema(description = "货物数量不足 补货天数")
   private BigDecimal goodsShort;
   @Schema(description = "货物数量不足 违约金")
   private BigDecimal goodsShortBreachAmount;
   @Schema(description = "每逾期一日,承担本合同总额 违约金")
   private BigDecimal overdueBreachAmount;
   @Schema(description = "逾期  日以上的,甲方有权解除合同")
   private BigDecimal terminateContract;
   @Schema(description = "双方均可向 人民法院")
   private String court;
   @Schema(description = "本合同附件包括:")
   private String contractAttchment;
   @Schema(description = "合同签订市")
   private String city;
   @Schema(description = "合同签订区")
   private String region;
   @Schema(description = "开票通知在 个工作日内")
   private BigDecimal invoiceNotice;
   @Schema(description = "合同总价税率")
   private BigDecimal contractTax;
   private List<ContractPaymentSchedule> contractPaymentSchedule;
   private List<ContractSubjectMatter> contractSubjectMatter;