rentaiming
2024-06-28 0219f0fc8f8b79cb50a9e1004b10d63a0edbb9dd
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionRk.java
@@ -25,12 +25,16 @@
@ApiModel(value = "SlVolumeProductionRk对象", description = "发起入库管理")
public class SlVolumeProductionRk {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty("入管理主表id")
    @TableField("volume_production_rkgl_id")
    private Long VolumeProductionRkglId;
    @ApiModelProperty("物资id")
    @TableField("materials_id")
    private Integer materialsId;
    private Long materialsId;
    @ApiModelProperty("入库数量")
    @TableField("rk_num")
@@ -50,7 +54,7 @@
    @ApiModelProperty("货架id")
    @TableField("shelf_id")
    private Integer shelfId;
    private Long shelfId;
    @ApiModelProperty("删除标志(0代表存在 2代表删除)")
    @TableField("del_flag")
@@ -72,5 +76,9 @@
    @TableField("update_time")
    private Date updateTime;
    @ApiModelProperty("二维码数量")
    @TableField("erwm_num")
    private Integer erwmNum;
}