mirror of
https://github.com/Estom/notes.git
synced 2026-02-04 02:53:57 +08:00
20 lines
334 B
Java
20 lines
334 B
Java
package cn.aofeng.demo.mockito;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 用户信息存储层。
|
|
*
|
|
* @author <a href="mailto:aofengblog@163.com">聂勇</a>
|
|
*/
|
|
public class UserDao {
|
|
|
|
public User queryById(long userId) {
|
|
return null;
|
|
}
|
|
|
|
public List<User> queryByName(String userName) {
|
|
return null;
|
|
}
|
|
}
|