package com.iailab.module.pms.production.wash.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
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_transfer_in")
|
@Data
|
public class TransferInEntity 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 String drly;
|
|
private BigDecimal nbdrl;
|
|
private String bz;
|
|
private String cjr;
|
|
private Date cjsj;
|
|
private String xgr;
|
|
private Date xgsj;
|
|
}
|