15 changed files with 316 additions and 87 deletions
@ -0,0 +1,33 @@ |
|||
package com.zdxt.enforcementcode.domain.bo; |
|||
|
|||
import com.zdxt.enforcementcode.domain.bean.DashboardCheckRegisterArea; |
|||
import io.github.linpeilie.annotations.AutoMapper; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
import org.dromara.common.mybatis.core.domain.BaseEntity; |
|||
|
|||
/** |
|||
* 大屏-高频检查 |
|||
* |
|||
* @author Lion Li |
|||
* @date 2026-06-02 |
|||
*/ |
|||
@Data |
|||
|
|||
public class DashboardCheckHighAreaQueryBo extends BaseEntity { |
|||
|
|||
/** |
|||
* 年份 |
|||
*/ |
|||
private Long year; |
|||
|
|||
/** |
|||
* 月份 1-12 |
|||
*/ |
|||
private Long month; |
|||
|
|||
/** |
|||
* 级别:1-市 2-区 3-街道 |
|||
*/ |
|||
private Integer level; |
|||
} |
|||
@ -0,0 +1,49 @@ |
|||
package com.zdxt.enforcementcode.domain.vo; |
|||
|
|||
|
|||
import cn.idev.excel.annotation.ExcelIgnoreUnannotated; |
|||
import cn.idev.excel.annotation.ExcelProperty; |
|||
import com.zdxt.enforcementcode.domain.bean.DashboardCheckRegisterArea; |
|||
import io.github.linpeilie.annotations.AutoMapper; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
|
|||
/** |
|||
* 大屏-高频检查区域 |
|||
* |
|||
* @author Lion Li |
|||
* @date 2026-06-02 |
|||
*/ |
|||
@Data |
|||
@ExcelIgnoreUnannotated |
|||
@AutoMapper(target = DashboardCheckRegisterArea.class) |
|||
public class DashboardCheckHighAreaInfoVo implements Serializable { |
|||
|
|||
|
|||
/** |
|||
* 区县编码 |
|||
*/ |
|||
@ExcelProperty(value = "区县编码") |
|||
private String areaCode; |
|||
|
|||
/** |
|||
* 区县名称 |
|||
*/ |
|||
@ExcelProperty(value = "区县名称") |
|||
private String areaName; |
|||
|
|||
|
|||
/** |
|||
* 高频检查次数 |
|||
*/ |
|||
private Long hpjccs; |
|||
|
|||
/** |
|||
* 高频检查登记级别:级别1-4 |
|||
*/ |
|||
private Integer gplevel; |
|||
|
|||
} |
|||
Loading…
Reference in new issue