whyclxw
2024-06-27 2eff7304df15f463dcd4563c0c62f4531bbef138
src/main/java/com/whyc/service/SinfBinfService.java
@@ -14,14 +14,25 @@
    @Autowired(required = false)
    private SinfBinfMapper mapper;
    /*查询左侧机房信息列表
    /*查询左侧电池机房信息列表
     * @param null 入参
     * @return null
     * @author lxw
     * @date 2024/6/15 9:41
     **/
    public Response getAllSinfBinf() {
        List<StationInf> list=mapper.getAllSinfBinf();
        return new Response().setII(1,list!=null,list,"左侧机房信息");
    public Response getAllSinfBinf1() {
        List<StationInf> list=mapper.getAllSinfBinf1();
        return new Response().setII(1,list!=null,list,"左侧电池机房信息");
    }
    /*查询左侧电源机房信息列表
     * @param null 入参
     * @return null
     * @author lxw
     * @date 2024/6/15 9:41
     **/
    public Response getAllSinfBinf2() {
        List<StationInf> list=mapper.getAllSinfBinf2();
        return new Response().setII(1,list!=null,list,"左侧电源机房信息");
    }
}