package com.ruoyi.project.dc.emergencySupplies.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_emergency_supplies
|
*
|
* @author wm
|
* @date 2020-12-07
|
*/
|
public class EmergencySupplies extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private Long emergencySuppliesId;
|
|
/** 创建人id */
|
@Excel(name = "创建人id")
|
private Long createUserId;
|
|
/** 更新者id */
|
@Excel(name = "更新者id")
|
private Long updateUserId;
|
|
/** 是否为微型消防站 */
|
@Excel(name = "是否为微型消防站")
|
private String isMiniatureFireStation;
|
|
/** 物资名称 */
|
@Excel(name = "物资名称")
|
private String materialName;
|
|
/** 数量 */
|
@Excel(name = "数量")
|
private Long quantity;
|
|
/** 存放地点 */
|
@Excel(name = "存放地点")
|
private String storageLocation;
|
|
/** 维护人 */
|
@Excel(name = "维护人")
|
private String maintenance;
|
|
/** 检查情况 */
|
@Excel(name = "检查情况")
|
private String inspection;
|
|
/** 要求周期 */
|
@Excel(name = "要求周期")
|
private String cycle;
|
|
|
public String getMaintenance() {
|
return maintenance;
|
}
|
|
public void setMaintenance(String maintenance) {
|
this.maintenance = maintenance;
|
}
|
|
public String getInspection() {
|
return inspection;
|
}
|
|
public void setInspection(String inspection) {
|
this.inspection = inspection;
|
}
|
|
public String getCycle() {
|
return cycle;
|
}
|
|
public void setCycle(String cycle) {
|
this.cycle = cycle;
|
}
|
|
//公司id
|
private Long companyId;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public void setEmergencySuppliesId(Long emergencySuppliesId)
|
{
|
this.emergencySuppliesId = emergencySuppliesId;
|
}
|
|
public Long getEmergencySuppliesId()
|
{
|
return emergencySuppliesId;
|
}
|
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 setIsMiniatureFireStation(String isMiniatureFireStation)
|
{
|
this.isMiniatureFireStation = isMiniatureFireStation;
|
}
|
|
public String getIsMiniatureFireStation()
|
{
|
return isMiniatureFireStation;
|
}
|
public void setMaterialName(String materialName)
|
{
|
this.materialName = materialName;
|
}
|
|
public String getMaterialName()
|
{
|
return materialName;
|
}
|
public void setQuantity(Long quantity)
|
{
|
this.quantity = quantity;
|
}
|
|
public Long getQuantity()
|
{
|
return quantity;
|
}
|
public void setStorageLocation(String storageLocation)
|
{
|
this.storageLocation = storageLocation;
|
}
|
|
public String getStorageLocation()
|
{
|
return storageLocation;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("emergencySuppliesId", getEmergencySuppliesId())
|
.append("createBy", getCreateBy())
|
.append("createUserId", getCreateUserId())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateUserId", getUpdateUserId())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("isMiniatureFireStation", getIsMiniatureFireStation())
|
.append("materialName", getMaterialName())
|
.append("quantity", getQuantity())
|
.append("storageLocation", getStorageLocation())
|
.toString();
|
}
|
}
|