无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionZy.java
@@ -1,5 +1,6 @@
package com.ruoyi.management.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
@@ -23,16 +24,20 @@
@ApiModel(value = "SlVolumeProductionZy对象", description = "发起转移")
public class SlVolumeProductionZy {
    @TableId("id")
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty("发起人ID")
    @TableField("sys_id")
    private Long sysId;
    @ApiModelProperty("物资id")
    @TableField("materials_id")
    private Integer materialsId;
    private Long materialsId;
    @ApiModelProperty("入库数量")
    @ApiModelProperty("入库")
    @TableField("rk_id")
    private Integer rkId;
    private Long rkId;
    @ApiModelProperty("转移数量")
    @TableField("zy_num")
@@ -78,13 +83,17 @@
    @TableField("state")
    private Integer state;
    @ApiModelProperty("归还数量")
    @TableField("guih_num")
    private Integer guihNum;
    @ApiModelProperty("转移管理id")
    private Long  zyglId;
    @ApiModelProperty("是否匹配 1未匹配,已匹配")
    @TableField("type")
    private String type;
    @ApiModelProperty("转移管理新生成入库编号")
    private Long  scrkId;
    @ApiModelProperty("转移到的楼层1、2、3")
    @TableField("store_management_number")
    private Integer  storeManagementNumber;
    @TableField("shelf_id")
    @ApiModelProperty("转移到的货架id")
    private Long  shelfId;
}