| | |
| | | package com.whyc.controller; |
| | | |
| | | import com.whyc.dto.Batt_Maint_Dealarm; |
| | | import com.whyc.dto.BattMaintDealarm; |
| | | import com.whyc.dto.Response; |
| | | import com.whyc.pojo.Battinf; |
| | | import com.whyc.service.BattMaintService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 电池组单体统计分析查询 |
| | |
| | | @RequestMapping("BattMaint") |
| | | @RestController |
| | | @Api(tags = "报表统计") |
| | | public class BattMaintController { |
| | | public class BattMaintController extends BaseController{ |
| | | |
| | | @Resource |
| | | private BattMaintService service; |
| | |
| | | */ |
| | | @PostMapping("/serchMonNum") |
| | | @ApiOperation(notes = "TODO ", value = "电池组单体统计分析查询/serchMonNum") |
| | | public Response<Object> serchMonNum(@RequestBody Batt_Maint_Dealarm bmd) { |
| | | public Response<Object> serchMonNum(@RequestBody BattMaintDealarm bmd) { |
| | | //TODO RZG |
| | | return service.serchMonNum(bmd); |
| | | } |