package com.iailab.module.pms.production.wash.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.iailab.framework.common.annotation.Dict;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 小时量
|
*
|
* @author DongYukun
|
* @Description
|
* @createTime 2024年09月05日
|
*/
|
@TableName("t_wash_hour_volume")
|
@Data
|
public class HourVolumeEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 日期
|
*/
|
private String rq;
|
|
/**
|
* 班次
|
*/
|
private String bc;
|
|
/**
|
* 流水号
|
*/
|
private String lsh;
|
|
/**
|
* 时间
|
*/
|
private Date sj;
|
|
/**
|
* 入洗量
|
*/
|
@JsonFormat(shape =JsonFormat.Shape.STRING)
|
private BigDecimal rxl;
|
|
/**
|
* 精煤量
|
*/
|
@JsonFormat(shape =JsonFormat.Shape.STRING)
|
private BigDecimal jml;
|
|
/**
|
* 混煤量
|
*/
|
@JsonFormat(shape =JsonFormat.Shape.STRING)
|
private BigDecimal hml;
|
|
/**
|
* 矸石量
|
*/
|
@JsonFormat(shape =JsonFormat.Shape.STRING)
|
private BigDecimal gsl;
|
|
/**
|
* 水洗矸石量
|
*/
|
@JsonFormat(shape =JsonFormat.Shape.STRING)
|
private BigDecimal sxgsl;
|
|
/**
|
* 浮精板数
|
*/
|
private BigDecimal fjbs;
|
|
/**
|
* 煤泥板数
|
*/
|
private BigDecimal mnbs;
|
|
/**
|
* 备注
|
*/
|
private String bz;
|
|
/**
|
* 创建人
|
*/
|
private String cjr;
|
|
/**
|
* 创建时间
|
*/
|
private Date cjsj;
|
|
/**
|
* 修改人
|
*/
|
private String xgr;
|
|
/**
|
* 修改时间
|
*/
|
private Date xgsj;
|
|
}
|