| | |
| | | private String materialCode; |
| | | |
| | | @Schema(description = "标的物编码(内部唯一名称)") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '标的物名称(内部)'") |
| | | @Column(columnDefinition = "VARCHAR(200) comment '标的物名称(内部)'") |
| | | private String materialInternalName; |
| | | |
| | | @Schema(description = "标的物规格/型号") |
| | |
| | | @Column(columnDefinition = "VARCHAR(500) comment '交货/交付地点'") |
| | | private String deliveryPlace; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "计划交付日期") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '计划交付日期'") |
| | | private String plannedDeliveryDate; |
| | | @Column(columnDefinition = "date comment '计划交付日期'") |
| | | private Date plannedDeliveryDate; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | |
| | | @Schema(description = "总重") |
| | | @Column(columnDefinition = "decimal(10,2) comment '总重 /kg'") |
| | | private BigDecimal totalWight; |
| | | |
| | | @Schema(description = "备注") |
| | | @Column(columnDefinition="text comment '备注'") |
| | | private String remarks; |
| | | |
| | | } |