chenhj
2026-04-24 ffe4413db421aabb7446007ff76d4e9943c6fc84
src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelves.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")
@Data
@ApiModel
@Schema
public class WarehouseGoodsShelves implements Serializable {
    /**
     * 
@@ -26,16 +26,18 @@
    /**
     * 货架名称
     */
    private String goodsShelvesName;
    private String name;
    /**
     * 层数
     */
    private Long storey;
    @TableField("`row`")
    private Long row;
    /**
     * 列数
     */
    private Long arrange;
    @TableField("`col`")
    private Long col;
    /**
     * 仓库id
@@ -52,7 +54,7 @@
     * 创建用户
     */
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
    private Integer createUser;
    /**
     * 修改时间
@@ -64,7 +66,7 @@
     * 修改用户
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
    private Integer updateUser;
    /**
     * 租户ID
@@ -74,4 +76,7 @@
    private Long tenantId;
    private static final long serialVersionUID = 1L;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}