You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
806 B
38 lines
806 B
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<DcWarning> warningList;
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public List<DcWarning> getWarningList() {
|
|
return warningList;
|
|
}
|
|
|
|
public void setWarningList(List<DcWarning> warningList) {
|
|
this.warningList = warningList;
|
|
}
|
|
}
|
|
|