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_system
|
*
|
* @author ruoyi
|
* @date 2023-04-26
|
*/
|
public class TbCoalMineSystem extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private Long id;
|
|
/** 所属煤矿id */
|
@Excel(name = "所属煤矿id")
|
private Long coalMineId;
|
|
/** 系统名称 */
|
@Excel(name = "系统名称")
|
private String systemName;
|
|
/** 负责人 */
|
@Excel(name = "负责人")
|
private String headName;
|
|
/** 负责人联系电话 */
|
@Excel(name = "负责人联系电话")
|
private String headPhone;
|
|
/** 业务数据编码 */
|
@Excel(name = "业务数据编码")
|
private String systemCode;
|
|
/** 上传目录路径 */
|
@Excel(name = "上传目录路径")
|
private String ftpUrl;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setCoalMineId(Long coalMineId)
|
{
|
this.coalMineId = coalMineId;
|
}
|
|
public Long getCoalMineId()
|
{
|
return coalMineId;
|
}
|
public void setSystemName(String systemName)
|
{
|
this.systemName = systemName;
|
}
|
|
public String getSystemName()
|
{
|
return systemName;
|
}
|
public void setHeadName(String headName)
|
{
|
this.headName = headName;
|
}
|
|
public String getHeadName()
|
{
|
return headName;
|
}
|
public void setHeadPhone(String headPhone)
|
{
|
this.headPhone = headPhone;
|
}
|
|
public String getHeadPhone()
|
{
|
return headPhone;
|
}
|
public void setSystemCode(String systemCode)
|
{
|
this.systemCode = systemCode;
|
}
|
|
public String getSystemCode()
|
{
|
return systemCode;
|
}
|
public void setFtpUrl(String ftpUrl)
|
{
|
this.ftpUrl = ftpUrl;
|
}
|
|
public String getFtpUrl()
|
{
|
return ftpUrl;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("coalMineId", getCoalMineId())
|
.append("systemName", getSystemName())
|
.append("headName", getHeadName())
|
.append("headPhone", getHeadPhone())
|
.append("systemCode", getSystemCode())
|
.append("ftpUrl", getFtpUrl())
|
.toString();
|
}
|
}
|