| | |
| | | @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="text comment '单据路径'") |
| | | private String meterReadAttPaths; |
| | | |
| | | @Schema(description = "单重") |
| | | @Column(columnDefinition = "decimal(10,2) comment '单重 /kg'") |
| | | private BigDecimal singleWight; |
| | | |
| | | @Schema(description = "总重") |
| | | @Column(columnDefinition = "decimal(10,2) comment '总重 /kg'") |
| | | private BigDecimal totalWight; |
| | | |
| | | @Schema(description = "备注") |
| | | @Column(columnDefinition="text comment '备注'") |
| | | private String remarks; |
| | | |
| | | } |