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