commit | author | age | ||
a18bfa | 1 | package cn.autoform.fw.mapper; |
Z | 2 | |
3 | import java.util.List; | |
4 | ||
5 | import org.apache.ibatis.annotations.Mapper; | |
6 | ||
7 | import cn.autoform.bean.Actor; | |
8 | import cn.autoform.bean.Tenant; | |
9 | import cn.autoform.bean.User; | |
10 | ||
11 | @Mapper | |
12 | public interface TestMapper { | |
13 | List<User> queryAll(); | |
14 | ||
15 | List<Actor> queryAllActor(); | |
16 | ||
17 | void insertUser(User user); | |
18 | ||
19 | List<Tenant> queryAllTenant(); | |
20 | } |