package com.ruoyi.interchange.domain;
|
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 煤矿基本信息对象 tb_coal_mine_info
|
*
|
* @author ruoyi
|
* @date 2023-04-26
|
*/
|
public class TbCoalMineInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private Long id;
|
|
/** 部门id */
|
@Excel(name = "部门id")
|
private Long deptId;
|
|
/** 露天矿编码 */
|
@Excel(name = "露天矿编码")
|
private String coalMineCode;
|
|
/** 企业名称 */
|
@Excel(name = "企业名称")
|
private String lsqy;
|
|
/** 生产能(万吨/年) */
|
@Excel(name = "生产能", readConverterExp = "万=吨/年")
|
private String scnl;
|
|
/** 所在地址 */
|
@Excel(name = "所在地址")
|
private String szdz;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setDeptId(Long deptId)
|
{
|
this.deptId = deptId;
|
}
|
|
public Long getDeptId()
|
{
|
return deptId;
|
}
|
public void setCoalMineCode(String coalMineCode)
|
{
|
this.coalMineCode = coalMineCode;
|
}
|
|
public String getCoalMineCode()
|
{
|
return coalMineCode;
|
}
|
public void setLsqy(String lsqy)
|
{
|
this.lsqy = lsqy;
|
}
|
|
public String getLsqy()
|
{
|
return lsqy;
|
}
|
public void setScnl(String scnl)
|
{
|
this.scnl = scnl;
|
}
|
|
public String getScnl()
|
{
|
return scnl;
|
}
|
public void setSzdz(String szdz)
|
{
|
this.szdz = szdz;
|
}
|
|
public String getSzdz()
|
{
|
return szdz;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("deptId", getDeptId())
|
.append("coalMineCode", getCoalMineCode())
|
.append("lsqy", getLsqy())
|
.append("scnl", getScnl())
|
.append("szdz", getSzdz())
|
.toString();
|
}
|
}
|