package com.iailab.module.pms.production.warehouse.entity;
|
|
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;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 仓位表
|
*
|
* @author DongYukun
|
* @Description
|
* @createTime 2023年02月15日 11:25:09
|
*/
|
@Data
|
@TableName("t_warehouse_position")
|
public class WarehousePositionEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 日期
|
*/
|
private String rq;
|
|
/**
|
* 班次
|
*/
|
private String bc;
|
|
/**
|
* 班次名称
|
*/
|
@TableField(exist = false)
|
private String bcName;
|
|
/**
|
* 流水号
|
*/
|
private String lsh;
|
|
/**
|
* 煤仓
|
*/
|
private String mc;
|
|
/**
|
* 煤仓类型
|
*/
|
private String mclx;
|
|
/**
|
* 煤仓名称
|
*/
|
@TableField(exist = false)
|
private String mcName;
|
|
/**
|
* 仓容量
|
*/
|
private String crl;
|
|
/**
|
* 产品
|
*/
|
private String cp;
|
|
/**
|
* 产品名称
|
*/
|
@TableField(exist = false)
|
private String cpName;
|
|
/**
|
* 内报估量
|
*/
|
private BigDecimal nbgl;
|
|
/**
|
* 外报估量
|
*/
|
private BigDecimal wbgl;
|
|
/**
|
* 备注
|
*/
|
private String bz;
|
|
/**
|
* 创建人
|
*/
|
private String cjr;
|
|
/**
|
* 创建时间
|
*/
|
private Date cjsj;
|
|
/**
|
* 修改人
|
*/
|
private String xgr;
|
|
/**
|
* 修改时间
|
*/
|
private Date xgsj;
|
|
}
|