package com.goafanti.common.dao; import com.goafanti.common.model.User; public interface UserMapper { int deleteByPrimaryKey(String id); int insert(User record); int insertSelective(User record); User selectByPrimaryKey(String id); int updateByPrimaryKeySelective(User record); int updateByPrimaryKey(User record); User selectByMobieAndType(java.lang.String mobile, Integer type); }