package com.gk.hotwork.Domain.Vo;
|
|
import java.util.Date;
|
|
/**
|
* 风险源综合查询条件
|
*/
|
public class RiskSourceSearchVo {
|
|
//风险源名称
|
private String name;
|
|
//风险源类型,1-设施设备,2-作业活动
|
private Byte type;
|
|
//风险等级,1-低风险,2-一般风险,3-较大风险,4-重大风险
|
private Byte level;
|
|
//状态,1-有效,2-无效,3-删除
|
private Byte status;
|
|
//区域位置
|
private String location;
|
|
//所属部门ID
|
private Long depId;
|
|
//所属部门名称
|
private String depName;
|
|
|
private Date startTime;
|
|
private Date endTime;
|
|
private Long pageIndex;
|
|
private Long pageSize;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
|
public Byte getLevel() {
|
return level;
|
}
|
|
public void setLevel(Byte level) {
|
this.level = level;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getLocation() {
|
return location;
|
}
|
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public Date getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(Date startTime) {
|
this.startTime = startTime;
|
}
|
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public Long getPageIndex() {
|
return pageIndex;
|
}
|
|
public void setPageIndex(Long pageIndex) {
|
this.pageIndex = pageIndex;
|
}
|
|
public Long getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(Long pageSize) {
|
this.pageSize = pageSize;
|
}
|
}
|