package com.hs.admin.dao; import com.hs.admin.bean.User; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; public interface UserDao { int deleteByPrimaryKey(Integer id); int insert(User record); int insertSelective(User record); User selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(User record); int updateByPrimaryKey(User record); User findByUserNameAndPassword(@Param("username") String username, @Param("password") String password); List<Map> findUserList(); }