package com.gkhy.safePlatform.doublePrevention.entity.dto.resp;
|
|
public class PreventRiskEventListRiskUnitsRespDTO {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 安全风险单元名称
|
*/
|
private String riskUnitName;
|
/**
|
* 生产装置ID
|
* */
|
private Long produceDeviceId;
|
/**
|
* 生产装置名称
|
* */
|
private String produceDeviceName;
|
|
public Long getProduceDeviceId() {
|
return produceDeviceId;
|
}
|
|
public void setProduceDeviceId(Long produceDeviceId) {
|
this.produceDeviceId = produceDeviceId;
|
}
|
|
public String getProduceDeviceName() {
|
return produceDeviceName;
|
}
|
|
public void setProduceDeviceName(String produceDeviceName) {
|
this.produceDeviceName = produceDeviceName;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getRiskUnitName() {
|
return riskUnitName;
|
}
|
|
public void setRiskUnitName(String riskUnitName) {
|
this.riskUnitName = riskUnitName;
|
}
|
}
|