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.
164 lines
3.2 KiB
Java
164 lines
3.2 KiB
Java
package com.glxp.api.entity.inout;
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
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 com.fasterxml.jackson.annotation.JsonIgnore;
|
|
import lombok.Data;
|
|
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
|
|
import org.springframework.http.codec.json.Jackson2JsonEncoder;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName(value = "io_code")
|
|
public class IoCodeEntity implements Serializable {
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
/**
|
|
* UDI码
|
|
*/
|
|
@TableField(value = "code")
|
|
private String code;
|
|
|
|
/**
|
|
* 主单据类型(入库,出库)
|
|
*/
|
|
@TableField(value = "mainAction")
|
|
private String mainAction;
|
|
|
|
/**
|
|
* 单据类型
|
|
*/
|
|
@TableField(value = "`action`")
|
|
private String action;
|
|
|
|
/**
|
|
* 订单号外键
|
|
*/
|
|
@TableField(value = "orderId")
|
|
private String orderId;
|
|
|
|
/**
|
|
* 手持终端订单号
|
|
*/
|
|
@TableField(value = "corpOrderId")
|
|
private String corpOrderId;
|
|
|
|
/**
|
|
* DI标识
|
|
*/
|
|
@TableField(value = "nameCode")
|
|
private String nameCode;
|
|
|
|
/**
|
|
* 批次号
|
|
*/
|
|
@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 = "packageLevel")
|
|
private String packageLevel;
|
|
|
|
/**
|
|
* 供应商ID外键
|
|
*/
|
|
@TableField(value = "supId")
|
|
private String supId;
|
|
|
|
/**
|
|
* 耗材字典ID外键
|
|
*/
|
|
@TableField(value = "relId")
|
|
private Long relId;
|
|
|
|
/**
|
|
* 扫码数量
|
|
*/
|
|
@TableField(value = "`count`")
|
|
private Integer count;
|
|
|
|
/**
|
|
* 实际数量
|
|
*/
|
|
@TableField(value = "reCount")
|
|
private Integer reCount;
|
|
/**
|
|
* 部门编码外键
|
|
*/
|
|
@TableField(value = "deptCode")
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 仓库编码外键
|
|
*/
|
|
@TableField(value = "invCode")
|
|
private String invCode;
|
|
|
|
/**
|
|
* 货位编码外键
|
|
*/
|
|
@TableField(value = "warehouseCode")
|
|
private String warehouseCode;
|
|
|
|
/**
|
|
* 更新日期
|
|
*/
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 创建日期
|
|
*/
|
|
@TableField(value = "createTime")
|
|
private Date createTime;
|
|
|
|
@TableField(exist = false)
|
|
private int status; //条码校验状态
|
|
@TableField(exist = false)
|
|
private int scanCount;
|
|
|
|
|
|
@JsonIgnore
|
|
public int getMyCount() {
|
|
if (count == null)
|
|
return 0;
|
|
return count;
|
|
}
|
|
|
|
@JsonIgnore
|
|
public int getMyReCount() {
|
|
if (reCount == null) {
|
|
return 0;
|
|
}
|
|
return reCount;
|
|
}
|
|
|
|
}
|