2021与蓝度共同重构项目,服务端
MercuryZ
2022-10-18 ea94079e74182be590b9fff356c97f522d9a7828
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
26
27
28
package com.sandu.ximon.dao.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.sandu.ximon.dao.bo.LightReportErrorBo;
import com.sandu.ximon.dao.domain.LightReportError;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @author Administrator
 * @description 针对表【light_report_error(单灯故障数据列表)】的数据库操作Mapper
 * @createDate 2022-09-28 14:58:29
 * @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);
}