|
|
@@ -161,15 +161,13 @@ public class LedgerSeizureStatsServiceImpl extends ServiceImpl<LedgerSeizureStat
|
|
161
|
161
|
* @date 2026/5/20 13:43
|
|
162
|
162
|
*/
|
|
163
|
163
|
@Override
|
|
164
|
|
- public DailyDeptStatisticsVO getTimeRangeStats(CountQueryReqVO countQueryReq) {
|
|
165
|
|
- DailyDeptStatisticsVO result = new DailyDeptStatisticsVO();
|
|
|
164
|
+ public SeizeTotalAndItemVO getTimeRangeStats(CountQueryReqVO countQueryReq) {
|
|
|
165
|
+ SeizeTotalAndItemVO result = new SeizeTotalAndItemVO();
|
|
166
|
166
|
// 总查获数
|
|
167
|
167
|
Integer total = this.baseMapper.statsTimeRangeTotal(countQueryReq);
|
|
168
|
168
|
result.setTotalSeizeNum(total);
|
|
169
|
|
-
|
|
170
|
|
- List<DailyDeptStatisticsVO.DailyDeptItemVO> itemList = getDetailedStatsByLevel(countQueryReq);
|
|
171
|
|
-
|
|
172
|
|
- // 每日部门统计数据
|
|
|
169
|
+ // 柱状明细
|
|
|
170
|
+ List<SeizeItemVO> itemList = this.baseMapper.statsTimeRangeItem(countQueryReq);
|
|
173
|
171
|
result.setItemList(itemList);
|
|
174
|
172
|
return result;
|
|
175
|
173
|
}
|