package com.gkhy.labRiskManage.api.controller.basic.dto.respDto;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* 基础实验场所管理
|
*/
|
|
public class BasicExperimentSiteQueryRespDTO {
|
|
private Long id;
|
/**
|
* 场所名称
|
*/
|
private String siteName;
|
/**
|
* 实验室所在楼
|
*/
|
private String floor;
|
/**
|
* 实验室所在房间
|
*/
|
private String room;
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
/**
|
* 新建时间
|
*/
|
private LocalDateTime createTime;
|
/**
|
* 最后修改人
|
*/
|
private Long updateByUserId;
|
/**
|
* 新建人
|
*/
|
private Long createByUserId;
|
/**
|
* 最后修改人姓名
|
*/
|
private String updateByUserName;
|
/**
|
* 新建人姓名
|
*/
|
private String createByUserName;
|
/**
|
* 场所责任人id
|
*/
|
private Long siteLiabilityPersonId;
|
/**
|
* 场所责任人
|
*/
|
private String siteLiabilityPerson;
|
/**
|
* 场所安全员id
|
*/
|
private Long safeLiabilityPersonId;
|
/**
|
* 场所安全员
|
*/
|
private String safeLiabilityPerson;
|
/**
|
* 有无消防设施:1-有;2-无
|
*/
|
private Byte fireFacilities;
|
/**
|
* 有无隔断:1-有;2-无
|
*/
|
private Byte partitionStatus;
|
/**
|
* 场所性质id
|
*/
|
private Long siteTypeId;
|
/**
|
* 场所性质
|
*/
|
private String siteType;
|
|
public Long getSiteLiabilityPersonId() {
|
return siteLiabilityPersonId;
|
}
|
|
public void setSiteLiabilityPersonId(Long siteLiabilityPersonId) {
|
this.siteLiabilityPersonId = siteLiabilityPersonId;
|
}
|
|
public Long getSafeLiabilityPersonId() {
|
return safeLiabilityPersonId;
|
}
|
|
public void setSafeLiabilityPersonId(Long safeLiabilityPersonId) {
|
this.safeLiabilityPersonId = safeLiabilityPersonId;
|
}
|
|
public String getSiteLiabilityPerson() {
|
return siteLiabilityPerson;
|
}
|
|
public void setSiteLiabilityPerson(String siteLiabilityPerson) {
|
this.siteLiabilityPerson = siteLiabilityPerson;
|
}
|
|
public String getSafeLiabilityPerson() {
|
return safeLiabilityPerson;
|
}
|
|
public void setSafeLiabilityPerson(String safeLiabilityPerson) {
|
this.safeLiabilityPerson = safeLiabilityPerson;
|
}
|
|
public Byte getFireFacilities() {
|
return fireFacilities;
|
}
|
|
public void setFireFacilities(Byte fireFacilities) {
|
this.fireFacilities = fireFacilities;
|
}
|
|
public Byte getPartitionStatus() {
|
return partitionStatus;
|
}
|
|
public void setPartitionStatus(Byte partitionStatus) {
|
this.partitionStatus = partitionStatus;
|
}
|
|
public Long getSiteTypeId() {
|
return siteTypeId;
|
}
|
|
public void setSiteTypeId(Long siteTypeId) {
|
this.siteTypeId = siteTypeId;
|
}
|
|
public String getSiteType() {
|
return siteType;
|
}
|
|
public void setSiteType(String siteType) {
|
this.siteType = siteType;
|
}
|
public String getUpdateByUserName() {
|
return updateByUserName;
|
}
|
|
public void setUpdateByUserName(String updateByUserName) {
|
this.updateByUserName = updateByUserName;
|
}
|
|
public String getCreateByUserName() {
|
return createByUserName;
|
}
|
|
public void setCreateByUserName(String createByUserName) {
|
this.createByUserName = createByUserName;
|
}
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getSiteName() {
|
return siteName;
|
}
|
|
public void setSiteName(String siteName) {
|
this.siteName = siteName;
|
}
|
|
public String getFloor() {
|
return floor;
|
}
|
|
public void setFloor(String floor) {
|
this.floor = floor;
|
}
|
|
public String getRoom() {
|
return room;
|
}
|
|
public void setRoom(String room) {
|
this.room = room;
|
}
|
|
public LocalDateTime getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(LocalDateTime updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public LocalDateTime getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(LocalDateTime createTime) {
|
this.createTime = createTime;
|
}
|
|
public Long getUpdateByUserId() {
|
return updateByUserId;
|
}
|
|
public void setUpdateByUserId(Long updateByUserId) {
|
this.updateByUserId = updateByUserId;
|
}
|
|
public Long getCreateByUserId() {
|
return createByUserId;
|
}
|
|
public void setCreateByUserId(Long createByUserId) {
|
this.createByUserId = createByUserId;
|
}
|
}
|