whyclxw
2024-09-02 f56f93430cdc8d46a11fbd79c52c63005bc61b30
src/main/java/com/whyc/mapper/DevInfMapper.java
@@ -1,6 +1,21 @@
package com.whyc.mapper;
import com.whyc.dto.DevInfDto;
import com.whyc.pojo.db_lithium_ram_db.DevInf;
import lombok.Value;
import org.apache.ibatis.annotations.Param;
import javax.websocket.server.PathParam;
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);
}