whyclxw
2025-06-13 7cb660935b6c925dc2a0953cfbfb076e6b5a9f94
src/main/java/com/whyc/service/BattInfService.java
@@ -477,4 +477,10 @@
    public List<BattInf> getListByUserId(Integer userId) {
        return mapper.getListByUserId(userId);
    }
    //获取站点下的电池组(下拉)
    public Response getBattByUid(Integer uid, String provice, String city, String country, String stationName) {
        List<BattInf> list=mapper.getBattByUid(uid,provice,city,country,stationName);
        return new Response().setII(1,list.size()>0,list,"获取站点下的电池组(下拉)");
    }
}