whycrzg
2021-02-20 cc45bef9da920b256b3ee626b1e4d54ceb13324c
update
1个文件已修改
12 ■■■■ 已修改文件
src/main/java/com/fgkj/controller/BattInfController.java 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fgkj/controller/BattInfController.java
@@ -96,7 +96,7 @@
    }
    @GetMapping("all")
    @ApiOperation(notes = "",value="all")
    @ApiOperation(notes = "查所有的电池组",value="all")
    public ServiceModel searchAll() {
        return service.searchAll();
    }
@@ -155,14 +155,14 @@
    //----------根据StationName1(维护区) 查不重复的StationName(站点)不包含91000000一期设备
    @PostMapping("byStationNameWithout91")
    @ApiOperation(notes = "",value="StationName1(维护区) 查不重复的StationName(站点)不包含91000000一期设备")
    public ServiceModelOnce serchByStationNameNot91(@RequestParam String stationName1) {
    public ServiceModelOnce serchByStationNameNot91(@ApiParam(value = "省",required = true) @RequestParam String stationName1) {
        BattInf bif = new BattInf();
        bif.setStationName1(stationName1);
        return service.serchByStationNameNot91(bif);
    }
//--查不重复的StationName1(维护区)
    @GetMapping("byStation")
    @ApiOperation(notes = "",value="查不重复的StationName1(维护区)")
    @ApiOperation(notes = "sum 集合长度",value="查不重复的StationName1(维护区)")
    public ServiceModelOnce serchByStation(){
        return service.serchByStation();
    }
@@ -181,8 +181,8 @@
    }
    // ----------查询所有的市
    @PostMapping("allStationName2")
    @ApiOperation(notes = "",value="查询所有的市")
    public ServiceModel serchAllStationName2(@RequestParam String stationName1) {
    @ApiOperation(notes = "模糊查询",value="查询所有的市")
    public ServiceModel serchAllStationName2(@ApiParam(value = "省",required = true) @RequestParam String stationName1) {
        BattInf binf = new BattInf();
        User_inf uinf=(User_inf) ActionUtil.getUser();
        binf.setNum(uinf.getuId());
@@ -267,7 +267,7 @@
    //判断新增的电池组是否存在
    @PostMapping("judgeBatt")
    @ApiOperation(notes = "",value="判断新增的电池组是否存在")
    public ServiceModel judgeBatt(@RequestParam String stationName) {
    public ServiceModel judgeBatt(@ApiParam(value = "站点",required = true) @RequestParam String stationName) {
        BattInf binf = new BattInf();
        binf.setStationName(stationName);
        return service.judgeBatt(binf);