| | |
| | | package com.taoke.autopay.service; |
| | | |
| | | import com.taoke.autopay.dao.WxUserInfoMapper; |
| | | import com.taoke.autopay.entity.WxUserInfo; |
| | | import com.taoke.autopay.utils.WxApiUtil; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author hxh |
| | |
| | | */ |
| | | public interface WxUserService { |
| | | |
| | | public WxUserInfo login(String openid); |
| | | public WxUserInfo login(WxApiUtil.WXUserInfo wxUserInfo); |
| | | |
| | | public WxUserInfo selectById(Long id); |
| | | |
| | | public List<WxUserInfo> list(WxUserInfoMapper.DaoQuery query, int page,int pageSize); |
| | | |
| | | public long count(WxUserInfoMapper.DaoQuery query); |
| | | |
| | | |
| | | } |