| | |
| | | @Data |
| | | public class ContractAddDTO { |
| | | |
| | | @Schema(description = "合同编号") |
| | | private String contractNo; |
| | | |
| | | @Schema(description = "合同名称") |
| | | private String contractName; |
| | | |
| | |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "生效日期") |
| | | private String effectiveDate; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "到期日期") |
| | | private String expirationDate; |
| | | |
| | |
| | | @Schema(description = "执行周期 1/周 2/月 3/季度 4/半年 5/年") |
| | | private String execFrequency; |
| | | |
| | | @Schema(description = "执行次数") |
| | | private Integer execTimes; |
| | | // @Schema(description = "执行次数") |
| | | // private Integer execTimes; |
| | | |
| | | @Schema(description = "执行日期后多少天生成应收") |
| | | private Integer execDay; |
| | |
| | | @Schema(description = "开票通知在 个工作日内") |
| | | private BigDecimal invoiceNotice; |
| | | |
| | | @Schema(description = "合同总价税率") |
| | | private BigDecimal contractTax; |
| | | |
| | | @Schema(description = "经济事项 bip推送应收用") |
| | | private String economicMatters; |
| | | |
| | | @Schema(description = "客户erp编码") |
| | | private String partyACode; |
| | | |
| | | private List<ContractPaymentScheduleAddDTO> contractPaymentSchedule; |
| | | |