1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.lf.server.mapper.bs;
|
| import com.lf.server.entity.bs.SboreholeattachEntity;
| import com.lf.server.mapper.all.BasicMapper;
| import org.apache.ibatis.annotations.Mapper;
| import org.springframework.stereotype.Repository;
|
| /**
| * Sboreholeattach
| * @author WWW
| */
| @Mapper
| @Repository
| public interface SboreholeattachMapper extends BasicMapper<SboreholeattachEntity> {
| }
|
|