You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/res/inout/IoSplitInvResponse.java

138 lines
2.3 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.res.inout;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
public class IoSplitInvResponse {
private Long id;
/**
* 工位编码
*/
private Long workPlaceCode;
/**
* 部门编码
*/
private String deptCode;
/**
* 仓库编码
*/
private String invCode;
/**
* 业务类型
*/
private String busType;
/**
* AAASSSQ
*/
private Integer productType;
/**
* 上货方式1:拆零上货2:整取上货
*/
private Integer fifoSplit;
/**
* 产品ID主键
*/
private Long relId;
/**
* 批次号
*/
private String batchNo;
/**
* 生产日期
*/
private String produceDate;
/**
* 失效日期
*/
private String expireDate;
/**
* 供应商ID
*/
private Long supId;
/**
* 入库数量
*/
private Integer inCount;
/**
* 出库数量
*/
private Integer outCount;
/**
* 出库数量
*/
private Integer reCount;
/**
* 锁定数量
*/
private Integer lockCount;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否开启库存预警
*/
private Boolean enableRemind;
/**
* 工位库存预警数量
*/
private Integer invRemindCount;
/**
* 备注
*/
private String remark;
private Integer groupCount;
//产品信息----------------------------start----------------------
private String supName;
private String workPlaceName;
private String cpmctymc;
private String ggxh;
private String ylqxzcrbarmc;
private String manufactory;
private String measname;
private String zczbhhzbapzbh;
private String ybbm;
private String zxxsdycpbs;
private String bzgg;
private String useLevelUnit;
private String nameCode;
private Integer remindState;
private String busName;
private Integer availableCount;
private Integer monopoly;
}