package com.gk.hotwork.doublePrevention.entity.dto.req;
|
|
|
public class PreventHandReportConfigReqDTO {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 上报开关 1-上报;2-不上报
|
*/
|
private Byte reportSwitch;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getReportSwitch() {
|
return reportSwitch;
|
}
|
|
public void setReportSwitch(Byte reportSwitch) {
|
this.reportSwitch = reportSwitch;
|
}
|
}
|