首页>代码>spring mvc+spring+mybatis+maven+easyui项目整合代码demo>/ssmeasyui/src/main/java/com/dream/dao/UserMapper.java
package com.dream.dao; import com.dream.model.User; public interface UserMapper { int deleteByPrimaryKey(Integer id); int insert(User record); int insertSelective(User record); User selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(User record); int updateByPrimaryKey(User record); }
