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; }