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