| | |
| | | @Schema(description = "单据路径") |
| | | @Column(columnDefinition="text comment '单据路径'") |
| | | private String outBoundAttPaths; |
| | | |
| | | @Schema(description = "到货时间") |
| | | @Column(columnDefinition="datetime comment '到货时间'") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date arrivalTime; |
| | | |
| | | @Schema(description = "到货单据名称") |
| | | @Column(columnDefinition="text comment '到货单据名称'") |
| | | private String arrivalAttNames; |
| | | |
| | | @Schema(description = "到货单据路径") |
| | | @Column(columnDefinition="text comment '到货单据路径'") |
| | | private String arrivalAttPaths; |
| | | |
| | | @Schema(description = "erp出库ID") |
| | | @Column(columnDefinition="bigint comment 'erp出库ID'") |
| | | private Long outBoundId; |
| | | |
| | | } |