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.
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.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 Long relId ;
/**
* 扫码数量
*/
@TableField ( value = "`count`" )
private int count ;
/**
* 实际数量
*/
@TableField ( value = "reCount" )
private int reCount ;
/**
* 1:在库, 2: 已退回; 3.已使用
*/
@TableField ( value = "status" )
private int status ;
}