2021与蓝度共同重构项目,服务端
zhanzhiqin
2022-07-27 8dcbf0608171abce431df0356f11efbbc6c2de40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.sandu.ximon.dao.mapper;
 
import com.sandu.ximon.dao.domain.C3mReportError;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @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> {
 
}