package org.jeecg.modules.mdc.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.jeecg.modules.mdc.entity.MdcEquipmentType;
|
|
/**
|
* @Description: 设备类型
|
* @Author: Sake
|
* @Date: 2023-03-28 15:23
|
*/
|
|
public interface MdcEquipmentTypeMapper extends BaseMapper<MdcEquipmentType> {
|
|
/**
|
* 根据设备类型名称查询设备类型图片
|
* @param equipmentType
|
* @return
|
*/
|
String findEquipmentTypeImage(@Param("equipmentType") String equipmentType);
|
}
|