package com.zc.business.domain; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.List; /** * @Description 感知事件批量处理 * * @author liuwenge * @date 2024/3/16 16:27 */ @ApiModel("感知事件批量处理") public class DcWarningBatchConvert { @ApiModelProperty("操作类型:0误报,1确认") private String type; @ApiModelProperty("感知事件列表") private List warningList; public String getType() { return type; } public void setType(String type) { this.type = type; } public List getWarningList() { return warningList; } public void setWarningList(List warningList) { this.warningList = warningList; } }