无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlGoodsShelf.java
@@ -24,8 +24,8 @@
@ApiModel(value = "SlGoodsShelf对象", description = "货架表")
public class SlGoodsShelf {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty("货架名称")
    @TableField("goods_shelf_name")
@@ -33,7 +33,7 @@
    @ApiModelProperty("仓库id")
    @TableField("store_management_id")
    private Integer storeManagementId;
    private Long storeManagementId;
    @ApiModelProperty("是否放 1否,2 是")
    @TableField("is_store_management")
@@ -41,7 +41,7 @@
    @ApiModelProperty("图片id")
    @TableField("img_id")
    private Integer imgId;
    private Long imgId;
    @ApiModelProperty("仓库在图片坐标X轴")
    @TableField("zb_x")
@@ -75,5 +75,13 @@
    @TableField("update_time")
    private Date updateTime;
    @ApiModelProperty("货架在图片坐标宽")
    @TableField("width")
    private String width;
    @ApiModelProperty("货架在图片坐标高")
    @TableField("height")
    private String height;
}