1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yuanchu.mom.service;
|
| import com.yuanchu.mom.pojo.User;
|
| import java.util.List;
| import java.util.Map;
|
| public interface UserService {
|
| /*判断是否登录成功*/
| User selectUserByPwd(String account, String password);
|
| //根据用户id查询用户名
| String selectNameById(Integer id);
|
| }
|
|