李林
2023-12-19 1cb9a7d2e9dfd915a0d25e3706f62e4b5b959947
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);
 
}