UserMapper.java 435 B

1234567891011121314151617181920
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.User;
  3. public interface UserMapper {
  4. int deleteByPrimaryKey(String id);
  5. int insert(User record);
  6. int insertSelective(User record);
  7. User selectByPrimaryKey(String id);
  8. int updateByPrimaryKeySelective(User record);
  9. int updateByPrimaryKey(User record);
  10. User selectByMobieAndType(java.lang.String mobile, Integer type);
  11. }