2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-04-22 f8d5a58c5536b72117c342e5a22bd44aa6320c23
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.sandu.ximon.dao.mapper;
 
import com.sandu.ximon.dao.bo.LightReportErrorBo;
import com.sandu.ximon.dao.domain.LightReportError;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @Entity com.sandu.ximon.dao.domain.LightReportError
 */
@Mapper
public interface LightReportErrorMapper extends BaseMapper<LightReportError> {
 
    /**
     * 获取故障码列表
     *
     * @param keyword 关键词
     * @return 故障码列表
     */
    List<LightReportErrorBo> listReportError(String keyword, Integer error_code, Long userid);
}