| | |
| | | @Schema(description = "供应商id") |
| | | private Long supplierId; |
| | | |
| | | @Schema(description = "发货类型 1货车 2快递") |
| | | private Integer shippingType; |
| | | |
| | | @Schema(description = "发货车牌号") |
| | | private String truckPlateNo; |
| | | |
| | | @Schema(description = "快递公司") |
| | | private String expressCompany; |
| | | |
| | | @Schema(description = "快递单号") |
| | | private String expressNo; |
| | | |
| | | @Schema(description = "项目id") |
| | | private Long projectId; |
| | | |
| | |
| | | private BigDecimal totalAmount; |
| | | |
| | | @Schema(description = "录入时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |