| | |
| | | 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; |
| | |
| | | @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") |
| | |
| | | @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; |
| | | |
| | | |
| | | } |