1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.gistack.sm.sjztmd.service;
|
| import cn.gistack.sm.sjztmd.entity.TbResGeneralInvestigation;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @PROJECT_NAME: skjcmanager
| * @DESCRIPTION:
| * @USER: aix
| * @DATE: 2024/1/3 14:35
| */
| public interface ITbResGeneralInvestigationService extends IService<TbResGeneralInvestigation> {
|
| }
|
|