package com.whyc.mapper;
|
|
import com.whyc.dto.DevInfDto;
|
import com.whyc.pojo.db_lithium_ram_db.DevInf;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
public interface DevInfMapper extends CustomMapper<DevInf>{
|
//查询包机人管理的设备id
|
List<DevInf> getAllInf(@Param("dto") DevInfDto dto);
|
//查询该类型最大设备编号
|
Integer getMaxDevId(Integer devType);
|
//获取左侧泪飙
|
List<DevInf> getLine(@Param("uid") Integer uid);
|
|
//获取左侧泪飙
|
List<DevInf> getDevType(@Param("uid") Integer uid,@Param("devType") Integer devType);
|
|
//设备分类总数统计
|
List<DevInf> getDevStaticByType(@Param("uid") Integer userId);
|
|
}
|