| | |
| | |
|
| | | 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);
|
| | | }
|