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/inv/InvPreinDetailEntity.java

75 lines
1.4 KiB
Java

package com.glxp.api.entity.inv;
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 lombok.Data;
@Data
@TableName(value = "inv_prein_detail")
public class InvPreinDetailEntity {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 条码
*/
@TableField(value = "code")
private String code;
/**
* 单据号外键
*/
@TableField(value = "orderId")
private String orderId;
/**
* 最小销售表示
*/
@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 = "relId")
private Integer relId;
/**
* 扫码数量
*/
@TableField(value = "`count`")
private Integer count;
/**
* 实际数量
*/
@TableField(value = "reCount")
private Integer reCount;
}