rentaiming
2024-07-17 cf6c89498811b01c0d06116acc0d950ddb5c2876
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.management.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = " 转移二维码生成数量", description = " 转移二维码生成数量")
public class getVolumeProductionzyCodeVO {
    private Long id;
 
    @ApiModelProperty("物资名称")
    private String goodsMaterialsName;
 
    @ApiModelProperty("1 是非消耗,2是消耗 ")
    private Integer isConsume;
 
    @ApiModelProperty("转移数量")
    private Integer zyNum;
 
    @ApiModelProperty("二维码数量")
    @TableField("erwm_num")
    private Integer erwmNum;
    @ApiModelProperty("转移管理新生成入库编号")
    private Long  scrkId;
}