whyclxw
2025-05-17 4c48c61c5759da5d150395d044307b1581faf4cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.whyc.mapper;
 
import com.whyc.dto.PowerDto;
import com.whyc.pojo.db_station.PowerInf;
import com.whyc.pojo.db_station.StationInf;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface PowerInfMapper extends CustomMapper<PowerInf>{
    List<PowerInf> getPowerList();
    //获取对应的电源id
    int getMaxPowerId();
    //查询电源
    List<PowerInf> getPower(PowerDto dto);
    //电源需要编号,powerNum编号,电源名称自动生成通讯电源+powerNum
    int getMaxPowerNum(@Param("stationId") Integer stationId);
    //获取电源品牌(下拉)
    List<String> getCompanyByUid(Integer uid);
    //获取电源型号(下拉)
    List<String> getPowerModelByUid(Integer uid);
    //获取电源协议(下拉)
    List<String> getProtocolByUid(Integer uid);
}