Lius
2023-10-12 998307fa4f923e37064853a2583b48103dd0d89b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}