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/entity/inout/IoSplitFifoInv.java

137 lines
3.1 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.entity.inout;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
@ApiModel(value = "io_split_fifo_inv")
@Data
@TableName(value = "io_split_fifo_inv")
public class IoSplitFifoInv implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
@ApiModelProperty(value = "")
private Integer id;
/**
* 工位编码
*/
@TableField(value = "workPlaceCode")
@ApiModelProperty(value = "工位编码")
private String workPlaceCode;
/**
* 部门编码
*/
@TableField(value = "deptCode")
@ApiModelProperty(value = "部门编码")
private String deptCode;
/**
* 仓库编码
*/
@TableField(value = "invCode")
@ApiModelProperty(value = "仓库编码")
private String invCode;
/**
* 产品类型
*/
@TableField(value = "productType")
@ApiModelProperty(value = "产品类型")
private String productType;
/**
* 上货方式1:拆零上货2:整取上货
*/
@TableField(value = "fifoSplit")
@ApiModelProperty(value = "上货方式1:拆零上货2:整取上货")
private String fifoSplit;
/**
* 产品ID主键
*/
@TableField(value = "relId")
@ApiModelProperty(value = "产品ID主键")
private Integer relId;
/**
* 批次号
*/
@TableField(value = "batchNo")
@ApiModelProperty(value = "批次号")
private Integer batchNo;
/**
* 生产日期
*/
@TableField(value = "produceDate")
@ApiModelProperty(value = "生产日期")
private Date produceDate;
/**
* 失效日期
*/
@TableField(value = "expireDate")
@ApiModelProperty(value = "失效日期")
private Date expireDate;
/**
* 供应商ID
*/
@TableField(value = "supId")
@ApiModelProperty(value = "供应商ID")
private Integer supId;
/**
* 入库数量
*/
@TableField(value = "inCount")
@ApiModelProperty(value = "入库数量")
private String inCount;
/**
* 出库数量
*/
@TableField(value = "outCount")
@ApiModelProperty(value = "出库数量")
private String outCount;
/**
* 锁定数量
*/
@TableField(value = "lockCount")
@ApiModelProperty(value = "锁定数量")
private String lockCount;
/**
* 创建时间
*/
@TableField(value = "createTime")
@ApiModelProperty(value = "创建时间")
private Date createTime;
/**
* 更新时间
*/
@TableField(value = "updateTime")
@ApiModelProperty(value = "更新时间")
private Date updateTime;
/**
* 备注
*/
@TableField(value = "remark")
@ApiModelProperty(value = "备注")
private String remark;
private static final long serialVersionUID = 1L;
}