| | |
| | | import com.dy.common.webUtil.BaseResponseUtils; |
| | | import com.dy.common.webUtil.QueryResultVo; |
| | | import com.dy.pipIrrGlobal.voSt.VoDayLoss; |
| | | import com.dy.pipIrrStatistics.intake.IntakeSv; |
| | | import com.dy.pipIrrStatistics.intake.qo.IntakeAmountQO; |
| | | import com.dy.pipIrrStatistics.result.StatisticlResultCode; |
| | | import com.dy.pipIrrGlobal.voSt.VoMonthAmount; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | return BaseResponseUtils.buildSuccess(this.sv.lossAmountOfDay(qo)); |
| | | } |
| | | |
| | | /** |
| | | * 查询指定月份各日漏损量 |
| | | * @param qo |
| | | * @return |
| | | */ |
| | | @GetMapping(path = "/lossAmountOfMonth") |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<VoMonthAmount>>> lossAmountOfMonth(LossQo qo) throws Exception { |
| | | if(qo.getYear() == null) { |
| | | return BaseResponseUtils.buildErrorMsg("查询条件年度不能为空"); |
| | | } |
| | | return BaseResponseUtils.buildSuccess(this.sv.lossAmountOfMonth(qo)); |
| | | } |
| | | |
| | | } |