首页>代码>Myeclipse搭建Spring+Spring Mvc+Mybatis+Maven+数据库Mysql项目demo,实现ajax分页>/ssm Maven Webapp/src/main/java/com/java/dao/UsermMapper.java
package com.java.dao; import java.util.List; import java.util.Map; import com.java.model.Userm; public interface UsermMapper { int userid(Integer userid); int insert(Userm record); int insertSelective(Userm record); Userm selectByPrimaryKey(Integer userid); Userm queryUser(Userm record); int updateByPrimaryKeySelective(Userm record); Userm selectByname(String username); int deleteByPrimaryKey(int userid); int updateByPrimaryKey(Userm record); public List<Userm> selectUseifo(Map<String,Object> map); int selectCount(Map<String,Object> map); }
最近下载更多