whyclxw
2025-05-15 e8b154e63e9db8750407c218eb13937f584bda8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.whyc.mapper;
 
import com.whyc.dto.PowerDto;
import com.whyc.pojo.db_station.PowerInf;
import com.whyc.pojo.db_station.StationInf;
 
import java.util.List;
 
public interface PowerInfMapper extends CustomMapper<PowerInf>{
    List<PowerInf> getPowerList();
    //获取对应的电源id
    int getMaxPowerId();
    //查询电源
    List<PowerInf> getPower(PowerDto dto);
}