2021与蓝度共同重构项目,服务端
liuhaonan
2022-07-27 e9e2230b41133c2e1821fa096fb1acf30c4d5698
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
 
    List<LightReportErrorBo> listError(Long userid);
}