package com.ruoyi.project.dc.miniatureFireStation.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
|
/**
|
* 微型消防站对象 dc_miniature_fire_station
|
*
|
* @author wm
|
* @date 2020-12-07
|
*/
|
public class MiniatureFireStation extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private Long miniatureFireStationId;
|
|
/** 创建人id */
|
@Excel(name = "创建人id")
|
private Long createUserId;
|
|
/** 更新者id */
|
@Excel(name = "更新者id")
|
private Long updateUserId;
|
|
/** 所属单位 */
|
@Excel(name = "所属单位")
|
private String affiliation;
|
|
/** 消防站名称 */
|
@Excel(name = "消防站名称")
|
private String fireStationName;
|
|
/** 消防站地点 */
|
@Excel(name = "消防站地点")
|
private String fireStationLocation;
|
|
//公司id
|
private Long companyId;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public void setMiniatureFireStationId(Long miniatureFireStationId)
|
{
|
this.miniatureFireStationId = miniatureFireStationId;
|
}
|
|
public Long getMiniatureFireStationId()
|
{
|
return miniatureFireStationId;
|
}
|
public void setCreateUserId(Long createUserId)
|
{
|
this.createUserId = createUserId;
|
}
|
|
public Long getCreateUserId()
|
{
|
return createUserId;
|
}
|
public void setUpdateUserId(Long updateUserId)
|
{
|
this.updateUserId = updateUserId;
|
}
|
|
public Long getUpdateUserId()
|
{
|
return updateUserId;
|
}
|
public void setAffiliation(String affiliation)
|
{
|
this.affiliation = affiliation;
|
}
|
|
public String getAffiliation()
|
{
|
return affiliation;
|
}
|
public void setFireStationName(String fireStationName)
|
{
|
this.fireStationName = fireStationName;
|
}
|
|
public String getFireStationName()
|
{
|
return fireStationName;
|
}
|
public void setFireStationLocation(String fireStationLocation)
|
{
|
this.fireStationLocation = fireStationLocation;
|
}
|
|
public String getFireStationLocation()
|
{
|
return fireStationLocation;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("miniatureFireStationId", getMiniatureFireStationId())
|
.append("createBy", getCreateBy())
|
.append("createUserId", getCreateUserId())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateUserId", getUpdateUserId())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("affiliation", getAffiliation())
|
.append("fireStationName", getFireStationName())
|
.append("fireStationLocation", getFireStationLocation())
|
.toString();
|
}
|
}
|