| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 货架 |
| | |
| | | @Data |
| | | public class WarehouseShelf implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | |
| | | /** |
| | | * 行 |
| | | */ |
| | | @TableField("`row`") |
| | | private Integer row; |
| | | |
| | | /** |
| | | * 列 |
| | | */ |
| | | @TableField("`col`") |
| | | private Integer col; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | |
| | | * 外键:仓库id |
| | | */ |
| | | private Integer warehouseId; |
| | | } |
| | | |
| | | @TableField(select = false,exist = false) |
| | | List<WarehouseCell> warehouseCellList; |
| | | } |