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.
|
|
|
package com.kms.yxgh.model;
|
|
|
|
|
|
|
|
import com.kms.yxgh.df.dto.DfYhHiddenDangerDto;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
|
|
* @ClassName: DfYhHiddenDangerModel
|
|
|
|
* @Description: 巡查隐患概览统计
|
|
|
|
* @Date: 2024/3/5 上午10:51
|
|
|
|
* *
|
|
|
|
* @author: lyd
|
|
|
|
* @version: 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiModel("巡查隐患概览统计")
|
|
|
|
@Data
|
|
|
|
public class DfYhHiddenDangerModel {
|
|
|
|
|
|
|
|
@ApiModelProperty("地区code")
|
|
|
|
private String adcd;
|
|
|
|
|
|
|
|
@ApiModelProperty("隐患类型")
|
|
|
|
private int problem;
|
|
|
|
|
|
|
|
@ApiModelProperty("数量")
|
|
|
|
private int count;
|
|
|
|
|
|
|
|
@ApiModelProperty("处置状态")
|
|
|
|
private Integer handleStatus;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|