| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.sales.pojo.CommonFile; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | |
| | | private List<CommonFile> SalesLedgerFiles; |
| | | |
| | | private Integer type; |
| | | @ApiModelProperty(value = "签订日期") |
| | | @Schema(description = "签订日期") |
| | | private LocalDate executionDate; |
| | | |
| | | private Boolean status; |
| | | |
| | | @ApiModelProperty(value = "付款方式") |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @ApiModelProperty(value = "交货日期") |
| | | @Schema(description = "交货日期") |
| | | private LocalDate deliveryDate; |
| | | } |