| | |
| | | @jakarta.persistence.Table(name = "out_bound")//数据库创建的表明 |
| | | public class OutBound extends BaseModel<OutBound> { |
| | | |
| | | @Schema(description = "出库批次号") |
| | | @Column(columnDefinition="VARCHAR(64) comment '出库批次号'") |
| | | private String batchNumber; |
| | | |
| | | @Schema(description = "客商名称") |
| | | @Column(columnDefinition="VARCHAR(64) comment '客商名称'") |
| | | private String busGuestName; |
| | |
| | | @Column(columnDefinition="datetime comment '出库时间'") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date outBoundTime; |
| | | |
| | | @Schema(description = "单据名称") |
| | | @Column(columnDefinition="text comment '单据名称'") |
| | | private String outBoundAttNames; |
| | | |
| | | @Schema(description = "单据路径") |
| | | @Column(columnDefinition="text comment '单据路径'") |
| | | private String outBoundAttPaths; |
| | | } |