1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.gistack.sm.sjztmd.mapper;
|
| import cn.gistack.sm.sjztmd.entity.TbDykeInvestigationState;
| import cn.gistack.sm.sjztmd.entity.TbResGeneralInvestigationState;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
| /**
| * AttResBaseMapper 接口
| *
| * @author Chill
| */
| public interface TbDykeInvestigationStateMapper extends BaseMapper<TbDykeInvestigationState> {
|
|
| }
|
|