package com.iailab.module.pms.production.warehouse.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author DongYukun
|
* @Description
|
* @createTime 2023年02月17日 09:41:00
|
*/
|
@Data
|
@TableName("t_warehouse_stock")
|
public class WarehouseStockEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
private String id;
|
|
/**
|
* 日期
|
*/
|
private String rq;
|
|
/**
|
* 班次
|
*/
|
private String bc;
|
|
/**
|
* 流水号
|
*/
|
private String lsh;
|
|
/**
|
* 库存煤种
|
*/
|
private String kcmz;
|
|
/**
|
* 单价(元/t)
|
*/
|
private BigDecimal danj;
|
|
/**
|
* 内报昨日库存
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal nbzrkc;
|
|
/**
|
* 内报今日入库
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal nbjrrk;
|
|
/**
|
* 内报今日出库
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal nbjrck;
|
|
/**
|
* 内报调整量
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal nbtzl;
|
|
/**
|
* 内报今日库存
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal nbjrkc;
|
|
/**
|
* 外报昨日库存
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal wbzrkc;
|
|
/**
|
* 外报今日入库
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal wbjrrk;
|
|
/**
|
* 外报今日出库
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal wbjrck;
|
|
/**
|
* 外报调整量
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal wbtzl;
|
|
/**
|
* 外报今日库存
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal wbjrkc;
|
|
/**
|
* 灰分Ad%
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal hf;
|
|
/**
|
* 水分Mt%
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal sf;
|
|
/**
|
* 硫份St,d%
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal lf;
|
|
/**
|
* 挥发分Vdaf%
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal hff;
|
|
/**
|
* 粘结GR.I
|
*/
|
private BigDecimal nj;
|
|
/**
|
* 胶质层Y(㎜)GR.I
|
*/
|
private BigDecimal jzc;
|
|
/**
|
* 发热量(cal/g)
|
*/
|
private BigDecimal frl;
|
|
/**
|
* 中损
|
*/
|
private BigDecimal zs;
|
|
/**
|
* 矸损
|
*/
|
private BigDecimal gs;
|
|
/**
|
* 压滤煤泥灰分Ad%
|
*/
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal ylmnHf;
|
|
/**
|
* 备注
|
*/
|
private String bz;
|
|
/**
|
* 创建人
|
*/
|
private String cjr;
|
|
/**
|
* 创建时间
|
*/
|
private Date cjsj;
|
|
/**
|
* 修改人
|
*/
|
private String xgr;
|
|
/**
|
* 修改时间
|
*/
|
private Date xgsj;
|
|
/**
|
* 标识(原煤库存、产品库存)
|
*/
|
private String bs;
|
|
}
|