| 123456789101112131415161718192021222324 |
- package com.zhixinghe1.ots.atomic.service;
- import com.zhixinghe1.ots.atomic.entity.WechatUser;
- /**
- * 微信用户 服务
- */
- public interface IWechatUserService {
- /**
- * 增加用户
- *
- * @param openId
- */
- void add(String openId);
- /**
- * 根据openId获取用户信息
- *
- * @param openId
- * @return
- */
- WechatUser getByOpenId(String openId);
- }
|