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.Dlghydpt2000Entity;
| import com.lf.server.mapper.all.GeomBaseMapper;
| import org.apache.ibatis.annotations.Mapper;
| import org.springframework.stereotype.Repository;
|
| /**
| * Dlghydpt2000
| * @author WWW
| */
| @Mapper
| @Repository
| public interface Dlghydpt2000Mapper extends GeomBaseMapper<Dlghydpt2000Entity> {
| }
|
|