mrzhssss
2021-12-15 26c094751ca84d2e54bf611b05111a44b406c115
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
28
29
30
31
32
package com.zy.common.entity;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class InterData {
 
    //1—原料,2—成品
    @ApiModelProperty(value= "材料类型")
    private Integer matType;
 
    //1—原料入库,2—成品入库,
    //3—成品出库
    @ApiModelProperty(value= "入出库类型")
    private Integer ioType;
 
    @ApiModelProperty(value= "单据ID")
    private Integer FInterID;
 
    @ApiModelProperty(value= "单据编号")
    private String FBillNo;
 
    @ApiModelProperty(value= "物料编码")
    private String Fnumber;
 
    //任务修改后的数量,如果为0表示取消
    @ApiModelProperty(value= "修改数量")
    private BigDecimal FQty;
}