| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package com.usoft.sso.dal.mapper;
- import com.usoft.sso.dal.entity.User;
- public interface UserMapper {
- /**
- * deleteByPrimaryKey
- *
- * @param id
- * @return int
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * insert
- *
- * @param record
- * @return int
- */
- int insert(User record);
- /**
- * insertSelective
- *
- * @param record
- * @return int
- */
- int insertSelective(User record);
- /**
- * selectByPrimaryKey
- *
- * @param id
- * @return User
- */
- User selectByPrimaryKey(Integer id);
- /**
- * updateByPrimaryKeySelective
- *
- * @param record
- * @return int
- */
- int updateByPrimaryKeySelective(User record);
- /**
- * updateByPrimaryKey
- *
- * @param record
- * @return int
- */
- int updateByPrimaryKey(User record);
- /**
- * 通过userUU查找用户信息
- *
- * @param useruu
- * @return
- */
- User selectByUseruu(Long useruu);
- /**
- * 通过请求值更新用户信息
- *
- * @param useruu
- * @return
- */
- int updateByUseruuKeySelective(User useruu);
- }
|