whycxzp
2025-04-25 0428d7bf35c95b33718ddcaf2e6e1311c5a40845
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.whyc.mapper;
 
import com.whyc.dto.DevInfDto;
import com.whyc.pojo.db_lithium_ram_db.DevLithiumInf;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface DevLithiumInfMapper extends CustomMapper<DevLithiumInf>{
    //查询包机人管理的设备id
    List<DevLithiumInf> getAllInf(@Param("dto") DevInfDto dto);
    //查询该类型最大设备编号
    Integer getMaxDevId(Integer devType);
    //获取左侧泪飙
    List<DevLithiumInf> getLine(@Param("uid") Integer uid);
 
    //获取左侧泪飙
    List<DevLithiumInf> getDevType(@Param("uid") Integer uid, @Param("devType") Integer devType);
 
    //设备分类总数统计
    List<DevLithiumInf> getDevStaticByType(@Param("uid") Integer userId);
 
}