| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrRemote.records.intakeAmountDay; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryResultVo; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.daoRm.RmIntakeAmountDayLastMapper; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.daoRm.RmIntakeAmountDayMapper; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voRm.VoIntakeAmountDay; | 
|---|
|  |  |  | import lombok.extern.slf4j.Slf4j; | 
|---|
|  |  |  | import org.apache.dubbo.common.utils.PojoUtils; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.stereotype.Service; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author :WuZeYu | 
|---|
|  |  |  | * @Date :2024/7/24  14:38 | 
|---|
|  |  |  | * @LastEditTime :2024/7/24  14:38 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Slf4j | 
|---|
|  |  |  | @Service | 
|---|
|  |  |  | public class IntakeAmountDaySv { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private RmIntakeAmountDayMapper rmIntakeAmountDayMapper; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private RmIntakeAmountDayLastMapper rmIntakeAmountDayLastMapper; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获得一页取水口日取水量漏损记录(历史) | 
|---|
|  |  |  | * @param vo | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public QueryResultVo<List<VoIntakeAmountDay>> getIntakeAmountDayHistory(IntakeAmountDayQueryVo vo) { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Map<String, Object> params = (Map<String, Object>) PojoUtils.generalize(vo); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Long itemTotal = rmIntakeAmountDayMapper.getRecordCount(params); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | QueryResultVo<List<VoIntakeAmountDay>> rsVo = new QueryResultVo<>(); | 
|---|
|  |  |  | rsVo.pageSize = vo.pageSize; | 
|---|
|  |  |  | rsVo.pageCurr = vo.pageCurr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | rsVo.calculateAndSet(itemTotal, params); | 
|---|
|  |  |  | rsVo.obj = rmIntakeAmountDayMapper.getIntakeAmountDayHistory(params); | 
|---|
|  |  |  | return rsVo; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获得一页取水口日取水量漏损记录(最新) | 
|---|
|  |  |  | * @param vo | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public QueryResultVo<List<VoIntakeAmountDay>> getIntakeAmountDayLast(IntakeAmountDayQueryVo vo) { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Map<String, Object> params = (Map<String, Object>) PojoUtils.generalize(vo); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Long itemTotal = rmIntakeAmountDayLastMapper.getRecordCount(params); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | QueryResultVo<List<VoIntakeAmountDay>> rsVo = new QueryResultVo<>(); | 
|---|
|  |  |  | rsVo.pageSize = vo.pageSize; | 
|---|
|  |  |  | rsVo.pageCurr = vo.pageCurr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | rsVo.calculateAndSet(itemTotal, params); | 
|---|
|  |  |  | rsVo.obj = rmIntakeAmountDayLastMapper.getIntakeAmountDayLast(params); | 
|---|
|  |  |  | return rsVo; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|