package com.gkhy.labRiskManage.api.controller.riskReport.dto.respDto;
|
|
import lombok.Data;
|
|
@Data
|
public class ReportExperimentSiteQueryRespDTO {
|
|
private Long id;
|
/**
|
* 报告ID
|
*/
|
private Long reportId;
|
/**
|
* D
|
*/
|
private Long siteId;
|
/**
|
* 场所名称
|
*/
|
private String siteName;
|
/**
|
* 实验室所在楼
|
*/
|
private String floor;
|
/**
|
* 实验室所在房间
|
*/
|
private String room;
|
/**
|
* 实验室所在房间
|
*/
|
private String description;
|
/**
|
* 场所责任人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;
|
}
|