| | |
| | | package com.sandu.ximon.dao.mapper; |
| | | |
| | | import com.sandu.ximon.dao.bo.C3ReportErrorBo; |
| | | import com.sandu.ximon.dao.domain.C3mReportError; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Administrator |
| | | * @description 针对表【c3m_report_error(c3故障数据列表)】的数据库操作Mapper |
| | | * @createDate 2022-07-27 14:27:33 |
| | | * @Entity com.sandu.ximon.dao.domain.C3mReportError |
| | | */ |
| | | * @author Administrator |
| | | * @description 针对表【c3m_report_error(c3故障数据列表)】的数据库操作Mapper |
| | | * @createDate 2022-07-27 14:27:33 |
| | | * @Entity com.sandu.ximon.dao.domain.C3mReportError |
| | | */ |
| | | @Mapper |
| | | public interface C3mReportErrorMapper extends BaseMapper<C3mReportError> { |
| | | |
| | | List<C3ReportErrorBo> listReportError(Long userid); |
| | | } |
| | | |
| | | |