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.
75 lines
1.4 KiB
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_place_order_detail")
|
|
public class InvPlaceOrderDetailEntity {
|
|
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
* 上架记录号
|
|
*/
|
|
@TableField(value = "recordId")
|
|
private String recordId;
|
|
|
|
/**
|
|
* 仓库号
|
|
*/
|
|
@TableField(value = "invCode")
|
|
private String invCode;
|
|
|
|
/**
|
|
* 货位号
|
|
*/
|
|
@TableField(value = "invSpaceCode")
|
|
private String invSpaceCode;
|
|
|
|
/**
|
|
* UDI码
|
|
*/
|
|
@TableField(value = "code")
|
|
private String code;
|
|
|
|
/**
|
|
* 物资编码
|
|
*/
|
|
@TableField(value = "relId")
|
|
private String relId;
|
|
|
|
/**
|
|
* 批次号
|
|
*/
|
|
@TableField(value = "batchNo")
|
|
private String batchNo;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
@TableField(value = "`count`")
|
|
private Integer count;
|
|
|
|
@TableField(value = "nameCode")
|
|
private String nameCode;
|
|
|
|
@TableField(value = "supId")
|
|
private String supId;
|
|
|
|
@TableField(value = "produceDate")
|
|
private String produceDate;
|
|
|
|
@TableField(value = "expireDate")
|
|
private String expireDate;
|
|
|
|
@TableField(value = "serialNo")
|
|
private String serialNo;
|
|
|
|
|
|
|
|
} |