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.
113 lines
2.2 KiB
Java
113 lines
2.2 KiB
Java
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 java.util.Date;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 扫码缺失字段信息补齐表
|
|
*/
|
|
@Data
|
|
@TableName(value = "io_code_lost")
|
|
public class IoCodeLostEntity {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
/**
|
|
* UDI码
|
|
*/
|
|
@TableField(value = "code")
|
|
private String code;
|
|
|
|
/**
|
|
* 批次号
|
|
*/
|
|
@TableField(value = "batchNo")
|
|
private String batchNo;
|
|
|
|
/**
|
|
* 生产日期
|
|
*/
|
|
@TableField(value = "produceDate")
|
|
private String produceDate;
|
|
|
|
/**
|
|
* 失效日期
|
|
*/
|
|
@TableField(value = "expireDate")
|
|
private String expireDate;
|
|
|
|
/**
|
|
* 序列号
|
|
*/
|
|
@TableField(value = "serialNo")
|
|
private String serialNo;
|
|
|
|
/**
|
|
* 供应商
|
|
*/
|
|
@TableField(value = "supId")
|
|
private String supId;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@TableField(value = "createTime")
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
|
|
@TableField(value = "nameCode")
|
|
private String nameCode;
|
|
|
|
@TableField(exist = false)
|
|
private String cpmctymc;
|
|
|
|
@TableField(exist = false)
|
|
private String ggxh;
|
|
|
|
@TableField(exist = false)
|
|
private String startTime;
|
|
|
|
@TableField(exist = false)
|
|
private String endTime;
|
|
|
|
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
public static final String COL_CODE = "code";
|
|
|
|
public static final String COL_BATCHNO = "batchNo";
|
|
|
|
public static final String COL_PRODUCEDATE = "produceDate";
|
|
|
|
public static final String COL_EXPIREDATE = "expireDate";
|
|
|
|
public static final String COL_SERIALNO = "serialNo";
|
|
|
|
public static final String COL_SUPID = "supId";
|
|
|
|
public static final String COL_CREATETIME = "createTime";
|
|
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
public static final String COL_REMARK = "remark";
|
|
}
|