1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ruoyi.doublePrevention.repository;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ruoyi.doublePrevention.entity.CJReport.PreventCJReportConfigLog;
| import org.springframework.stereotype.Repository;
|
| @Repository
| public interface PreventCJReportConfigLogRepository extends BaseMapper<PreventCJReportConfigLog> {
| //
| // /**
| // * 数据上报配置历史记录-查询
| // */
| // IPage<PreventCJReportConfigLog> getReportConfigLogPage(Page<Object> page, PreventReportConfigLogQueryReqDTO queryReqDTO);
| }
|
|