1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.landtool.lanbase.modules.res.dao;
|
| import java.util.List;
|
| import org.apache.ibatis.annotations.Mapper;
|
| import com.landtool.lanbase.modules.res.entity.Res_MainInfo;
|
| @Mapper
| public interface ZiYuanFaBuMapper {
| List<Res_MainInfo> selectResMainInfo(Res_MainInfo model);
| List<Res_MainInfo> getAll();
| }
|
|