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.
99 lines
2.5 KiB
Java
99 lines
2.5 KiB
Java
9 months ago
|
package com.glxp.api.entity.collect;
|
||
|
|
||
|
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="com-glxp-api-entity-collect-IoSplitFifoInvRel")
|
||
|
@Data
|
||
|
@TableName(value = "udi_wms_ywj.io_split_fifo_inv_rel")
|
||
|
public class IoSplitFifoInvRel implements Serializable {
|
||
|
@TableId(value = "id", type = IdType.AUTO)
|
||
|
@ApiModelProperty(value="")
|
||
|
private Integer id;
|
||
|
|
||
|
/**
|
||
|
* 库存ID外键
|
||
|
*/
|
||
|
@TableField(value = "invIdFk")
|
||
|
@ApiModelProperty(value="库存ID外键")
|
||
|
private Integer invIdFk;
|
||
|
|
||
|
/**
|
||
|
* 上货工位编码
|
||
|
*/
|
||
|
@TableField(value = "putWorkCode")
|
||
|
@ApiModelProperty(value="上货工位编码")
|
||
|
private Long putWorkCode;
|
||
|
|
||
|
/**
|
||
|
* 采集工位编码
|
||
|
*/
|
||
|
@TableField(value = "collectWorkCode")
|
||
|
@ApiModelProperty(value="采集工位编码")
|
||
|
private Long collectWorkCode;
|
||
|
|
||
|
/**
|
||
|
* 业务类型
|
||
|
*/
|
||
|
@TableField(value = "busType")
|
||
|
@ApiModelProperty(value="业务类型")
|
||
|
private String busType;
|
||
|
|
||
|
/**
|
||
|
* 更新时间
|
||
|
*/
|
||
|
@TableField(value = "updateTime")
|
||
|
@ApiModelProperty(value="更新时间")
|
||
|
private Date updateTime;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
@TableField(value = "createTime")
|
||
|
@ApiModelProperty(value="创建时间")
|
||
|
private Date createTime;
|
||
|
|
||
|
/**
|
||
|
* 创建人
|
||
|
*/
|
||
|
@TableField(value = "createUser")
|
||
|
@ApiModelProperty(value="创建人")
|
||
|
private String createUser;
|
||
|
|
||
|
/**
|
||
|
* 更新人
|
||
|
*/
|
||
|
@TableField(value = "updateUser")
|
||
|
@ApiModelProperty(value="更新人")
|
||
|
private String updateUser;
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
public static final String COL_ID = "id";
|
||
|
|
||
|
public static final String COL_INVIDFK = "invIdFk";
|
||
|
|
||
|
public static final String COL_PUTWORKCODE = "putWorkCode";
|
||
|
|
||
|
public static final String COL_COLLECTWORKCODE = "collectWorkCode";
|
||
|
|
||
|
public static final String COL_BUSTYPE = "busType";
|
||
|
|
||
|
public static final String COL_UPDATETIME = "updateTime";
|
||
|
|
||
|
public static final String COL_CREATETIME = "createTime";
|
||
|
|
||
|
public static final String COL_CREATEUSER = "createUser";
|
||
|
|
||
|
public static final String COL_UPDATEUSER = "updateUser";
|
||
|
}
|