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