| | |
| | | package com.by4cloud.platformx.business.vo; |
| | | |
| | | import com.by4cloud.platformx.business.entity.ContractPaymentSchedule; |
| | | import com.by4cloud.platformx.business.entity.ContractSubjectMatter; |
| | | import com.by4cloud.platformx.business.entity.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.persistence.Column; |
| | |
| | | |
| | | @Schema(description = "合同附件URL") |
| | | private String attachmentUrl; |
| | | |
| | | @Schema(description = "合同附件名称") |
| | | private String attachmentName; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | |
| | | private List<ContractPaymentSchedule> contractPaymentSchedule; |
| | | |
| | | private List<ContractSubjectMatter> contractSubjectMatter; |
| | | |
| | | private List<ContractOutBound> contractOutBound; |
| | | |
| | | private List<PaymentSlip> paymentSlip; |
| | | |
| | | private List<ContractInvoice> contractInvoice; |
| | | } |