| | |
| | | package com.by4cloud.platformx.business.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.persistence.Column; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | public class ContractSubjectMatterAddDTO { |
| | | |
| | | @Column(columnDefinition = "VARCHAR(200) comment '标的物名称'") |
| | | @Schema(description = "标的物名称") |
| | | private String materialName; |
| | | |
| | | @Schema(description = "标的物编码(内部唯一编码)") |
| | |
| | | @Schema(description = "总重") |
| | | private BigDecimal totalWight; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "计划交付日期") |
| | | private Date plannedDeliveryDate; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remarks; |
| | | |
| | | } |