| | |
| | | @RestController |
| | | @Api(tags = "配置信息-A059") |
| | | @RequestMapping("A059StationInf") |
| | | public class A059StationInfController { |
| | | public class A059StationInfController extends BaseController{ |
| | | @Resource |
| | | private A059StationInfService service; |
| | | @Resource |
| | |
| | | |
| | | @GetMapping("/getAll") |
| | | @ApiOperation("获取A059配置信息") |
| | | public Response getA059StationInfList(@RequestParam int pageNum, @RequestParam int pageSize,@RequestParam String province,@RequestParam String city,@RequestParam String county){ |
| | | return service.getA059StationInfListAndBattInf(pageNum,pageSize,province,city,county); |
| | | public Response getA059StationInfList(@RequestParam int pageNum, @RequestParam int pageSize, @RequestParam(required = false) String province, @RequestParam(required = false) String city, @RequestParam(required = false) String county, @RequestParam int stationType) { |
| | | return service.getA059StationInfListAndBattInf(pageNum, pageSize, province, city, county, stationType); |
| | | } |
| | | |
| | | @PostMapping("/importBatt") |