郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.gk.hotwork.doublePrevention.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.gk.hotwork.doublePrevention.entity.PreventReportConfigLog;
import com.gk.hotwork.doublePrevention.entity.dto.req.PreventReportConfigLogQueryReqDTO;
import org.springframework.stereotype.Repository;
 
@Repository
public interface PreventReportConfigLogRepository extends BaseMapper<PreventReportConfigLog> {
 
    /**
     * 数据上报配置历史记录-查询
     */
    IPage<PreventReportConfigLog> getReportConfigLogPage(Page<Object> page, PreventReportConfigLogQueryReqDTO queryReqDTO);
}