双重预防项目-国泰新华二开定制版
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.doublePrevention.service.baseService.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.doublePrevention.entity.PreventRiskEvent;
import com.ruoyi.doublePrevention.repository.PreventRiskEventRepository;
import com.ruoyi.doublePrevention.service.baseService.PreventRiskEventService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
//@Service("PreventRiskEventService")
public class PreventRiskEventServiceImpl extends ServiceImpl<PreventRiskEventRepository, PreventRiskEvent> implements PreventRiskEventService {
 
}