From 7be0d5b901b999d2347774df3cc1a64927838bb3 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期二, 15 四月 2025 10:10:35 +0800 Subject: [PATCH] 优化每年专项数据获取 --- src/main/java/com/ruoyi/doublePrevention/entity/dto/req/RiskAndPeopleInfoReqBO.java | 32 +++++++++++++++++--------------- 1 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/RiskAndPeopleInfoReqBO.java b/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/RiskAndPeopleInfoReqBO.java index 7cdf793..66d2805 100644 --- a/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/RiskAndPeopleInfoReqBO.java +++ b/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/RiskAndPeopleInfoReqBO.java @@ -1,15 +1,17 @@ -package com.ruoyi.doublePrevention.entity.dto.req; - -import lombok.Data; - -@Data -public class RiskAndPeopleInfoReqBO { - - private Integer pageNum; - - private Integer pageSize; - - private String hazardName; - - private String hazardRank; -} +package com.ruoyi.doublePrevention.entity.dto.req; + +import lombok.Data; + +@Data +public class RiskAndPeopleInfoReqBO { + + private Integer pageNum; + + private Integer pageSize; + + private String hazardName; + + private String hazardRank; + + private Long id; +} -- Gitblit v1.9.2