16639036659
2023-12-11 56c84cd7fb04407536eb0135162313029828a81f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.doublePrevention.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.doublePrevention.entity.CJReport.PreventCJReportOverhaulLog;
import com.ruoyi.doublePrevention.repository.param.HandlerCJReportParam;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Repository
public interface PreventCJReportOverhaulLogRepository extends BaseMapper<PreventCJReportOverhaulLog> {
 
    int insertCJOverhaulLists(PreventCJReportOverhaulLog cjOverhaulLog);
 
    List<PreventCJReportOverhaulLog> listReportOverhaulDate();
 
    int updateCJReportStatusById(HandlerCJReportParam handlerCJReportParam);
}