| | |
| | | package com.ruoyi.warehouse.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | |
| | | @Data |
| | | @ApiModel(value = "仓库货架层,列表") |
| | | public class WarehouseGoodsShelvesRowcol implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * 文档id |
| | | */ |
| | | private Long documentationId; |
| | | |
| | | /** |
| | | * 层数 |
| | | */ |
| | | private Long storey; |
| | | @TableField("`row`") |
| | | private Long row; |
| | | |
| | | /** |
| | | * 列数 |
| | | */ |
| | | private Long arrange; |
| | | @TableField("`col`") |
| | | private Long col; |
| | | |
| | | /** |
| | | * 货架id |
| | |
| | | private Long warehouseGoodsShelvesId; |
| | | |
| | | /** |
| | | * 仓库id |
| | | */ |
| | | private Long warehouseId; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | /** |
| | | * 创建用户 |
| | | */ |
| | | private Long createUser; |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | /** |
| | | * 修改用户 |
| | | */ |
| | | private Long updateUser; |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer updateUser; |
| | | |
| | | /** |
| | | * 租户ID |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | /** |
| | | * 备注 |