package com.iailab.module.pms.production.wash.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.iailab.framework.common.annotation.Dict;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 入洗量详情量
|
*
|
* @author DongYukun
|
* @Description
|
* @createTime 2024年09月05日
|
*/
|
@TableName("t_wash_to_wash_det")
|
@Data
|
public class ToWashDetEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 总入洗id
|
*/
|
private String washId;
|
|
/**
|
* 煤种
|
*/
|
private String mz;
|
|
/**
|
* 比例
|
*/
|
private String bl;
|
|
/**
|
* 入洗量
|
*/
|
private String rxl;
|
|
/**
|
* 备注
|
*/
|
private String bz;
|
|
/**
|
* 创建人
|
*/
|
private String cjr;
|
|
/**
|
* 创建时间
|
*/
|
private Date cjsj;
|
|
/**
|
* 修改人
|
*/
|
private String xgr;
|
|
/**
|
* 修改时间
|
*/
|
private Date xgsj;
|
|
}
|