2026-04-23 c247f5bf64c98595cc7e4efc9e1ae7ff1df79c11
src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelvesRowcol.java
@@ -6,7 +6,7 @@
import java.time.LocalDateTime;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
@@ -15,7 +15,7 @@
 */
@TableName(value ="warehouse_goods_shelves_rowcol")
@Data
@ApiModel(value = "仓库货架层,列表")
@Schema(name = "仓库货架层,列表")
public class WarehouseGoodsShelvesRowcol implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -24,19 +24,18 @@
     */
    @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
@@ -44,20 +43,16 @@
    private Long warehouseGoodsShelvesId;
    /**
     * 仓库id
     */
    private Long warehouseId;
    /**
     * 创建时间
     */
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    /**
     * 创建用户
     */
    private Long createUser;
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    /**
     * 修改时间
@@ -69,7 +64,7 @@
     * 修改用户
     */
    @TableField(fill = FieldFill.INSERT)
    private Long updateUser;
    private Integer updateUser;
    /**
     * 租户ID
@@ -81,4 +76,7 @@
     */
    private String remark;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}