package com.gk.hotwork.doublePrevention.entity.dto.req;
|
|
public class PreventRiskControlMeasureListQueryReqDTO {
|
|
private Integer pageIndex;
|
|
private Integer pageSize;
|
/**
|
* 管控方式:1-自动化监控,2-隐患排查
|
*/
|
private Byte controlType;
|
/**
|
* 风险管控措施编号
|
*/
|
private String controlMeasureCode;
|
/**
|
* 管控措施分类1
|
* 1-工程技术,2-维护保养,3-操作行为,4-应急设施
|
*/
|
private Byte classify1;
|
/**
|
* 管控措施分类2
|
* 自定义
|
*/
|
private Byte classify2;
|
|
|
public Integer getPageIndex() {
|
return pageIndex;
|
}
|
|
public void setPageIndex(Integer pageIndex) {
|
this.pageIndex = pageIndex;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public Byte getControlType() {
|
return controlType;
|
}
|
|
public void setControlType(Byte controlType) {
|
this.controlType = controlType;
|
}
|
|
public String getControlMeasureCode() {
|
return controlMeasureCode;
|
}
|
|
public void setControlMeasureCode(String controlMeasureCode) {
|
this.controlMeasureCode = controlMeasureCode;
|
}
|
|
public Byte getClassify1() {
|
return classify1;
|
}
|
|
public void setClassify1(Byte classify1) {
|
this.classify1 = classify1;
|
}
|
|
public Byte getClassify2() {
|
return classify2;
|
}
|
|
public void setClassify2(Byte classify2) {
|
this.classify2 = classify2;
|
}
|
}
|