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.
72 lines
1.6 KiB
Java
72 lines
1.6 KiB
Java
2 years ago
|
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 lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 领用单详情
|
||
|
*/
|
||
|
@Data
|
||
|
@TableName(value = "pur_receive_detail")
|
||
|
public class PurReceiveDetailEntity {
|
||
|
@TableId(value = "id", type = IdType.AUTO)
|
||
|
private Integer id;
|
||
|
|
||
|
/**
|
||
|
* 订单外键
|
||
|
*/
|
||
|
@TableField(value = "orderIdFk")
|
||
|
private String orderIdFk;
|
||
|
|
||
|
/**
|
||
|
* 产品ID
|
||
|
*/
|
||
|
@TableField(value = "relIdFk")
|
||
|
private Long relIdFk;
|
||
|
|
||
|
@TableField(value = "nameCode")
|
||
|
private String nameCode;
|
||
|
|
||
|
/**
|
||
|
* 数量
|
||
|
*/
|
||
|
@TableField(value = "`count`")
|
||
|
private Integer count;
|
||
|
|
||
|
/**
|
||
|
* 供应商ID
|
||
|
*/
|
||
|
@TableField(value = "supId")
|
||
|
private String supId;
|
||
|
|
||
|
@TableField(value = "productDate")
|
||
|
private String productDate;
|
||
|
|
||
|
@TableField(value = "batchNo")
|
||
|
private String batchNo;
|
||
|
|
||
|
@TableField(value = "expireDate")
|
||
|
private String expireDate;
|
||
|
|
||
|
public static final String COL_ID = "id";
|
||
|
|
||
|
public static final String COL_ORDERIDFK = "orderIdFk";
|
||
|
|
||
|
public static final String COL_RELIDFK = "relIdFk";
|
||
|
|
||
|
public static final String COL_NAMECODE = "nameCode";
|
||
|
|
||
|
public static final String COL_COUNT = "count";
|
||
|
|
||
|
public static final String COL_SUPID = "supId";
|
||
|
|
||
|
public static final String COL_PRODUCTDATE = "productDate";
|
||
|
|
||
|
public static final String COL_BATCHNO = "batchNo";
|
||
|
|
||
|
public static final String COL_EXPIREDATE = "expireDate";
|
||
|
}
|