美文网首页
基本框架01

基本框架01

作者: 夏夏夏天的西瓜 | 来源:发表于2017-08-09 22:33 被阅读0次

    package com.ect.dao;

    import java.util.List;

    import com.etc.entity.User;

    public interface UserDao {

    /** 登录

          查询

          根据用户名和密码返回一个用户对象 

          @return null没有此对象登录失败  返回非空的引用则登录成功

     **/

    public User checkLogin(String username,String userpassword);

    /** 注册

          添加一个用户对象

     * */

    public boolean addUser(User u);

    /** * 查询所有 */

    public ListqueryAllUser();

    /** * 根据用户名进行模糊查询 */

    public ListqueryByLikeName(String name);

    /**

    * 根据用户编码删除

    */

    public boolean deleteUser(int userid);

    /**

    * 修改

    */

    public boolean updateUser(User u);

    }

    相关文章

      网友评论

          本文标题:基本框架01

          本文链接:https://www.haomeiwen.com/subject/nrqcrxtx.html