123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- package com.platform.yijia.dao;
- import com.platform.yijia.pojo.AppUserInfo;
- import com.platform.yijia.pojo.AppUserInfoExample;
- import java.util.List;
- import java.util.Map;
- import org.apache.ibatis.annotations.Param;
- public interface AppUserInfoMapper {
- //根据手机号和油站获取用户信息
- AppUserInfo selectAppUserInfoByMobilePhoneAndStationId(AppUserInfo appUserInfo);
- //获取用户信息
- AppUserInfo getAppUserInfo(AppUserInfo appUserInfo);
- /**
- * 判断使用小程序支付的用户是否关注公众号
- * @param map
- * @return
- */
- String whetherFollowGzh(Map map);
- /***
- * 判断该App用户是否已注册
- * @param map
- * @return
- */
- int isExistAppUser(Map map);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- long countByExample(AppUserInfoExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int deleteByExample(AppUserInfoExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int deleteByPrimaryKey(Integer userId);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int insert(AppUserInfo record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int insertSelective(AppUserInfo record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- List<AppUserInfo> selectByExample(AppUserInfoExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- AppUserInfo selectByPrimaryKey(Integer userId);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int updateByExampleSelective(@Param("record") AppUserInfo record, @Param("example") AppUserInfoExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int updateByExample(@Param("record") AppUserInfo record, @Param("example") AppUserInfoExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int updateByPrimaryKeySelective(AppUserInfo record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table app_user_info
- *
- * @mbg.generated
- */
- int updateByPrimaryKey(AppUserInfo record);
- //更新unionID
- void updateAppUserInfo(AppUserInfo appUserInfo);
- //查询客户
- List<AppUserInfo> getUserInfo(AppUserInfo appUserInfo);
- }
|