package com.gkhy.safePlatform.doublePrevention.entity.dto.req; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; @TableName("prevent_report_config") public class PreventReportConfigUpdateReqDTO { /** * 主键 */ private Integer id; /** * 上报开关:0-开启;1-关闭 */ private Byte reportState; /** * 上报方式:0-手动;1-自动 */ private Byte reportType; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Byte getReportType() { return reportType; } public void setReportType(Byte reportType) { this.reportType = reportType; } public Byte getReportState() { return reportState; } public void setReportState(Byte reportState) { this.reportState = reportState; } }