package com.cyksj.service.user; import com.baomidou.mybatisplus.extension.service.IService; import com.cyksj.model.dto.GzhOAuth2UserInfo; import com.cyksj.model.dto.UserWhoami; import com.cyksj.model.entity.User; import com.cyksj.model.entity.WxSyncLog; /** * @author chan * @date 2021/10/10 下午3:27 */ public interface UserService extends IService { User saveAuth(GzhOAuth2UserInfo userinfo, Long sharedId, Integer dsType, Long pid); UserWhoami whoami(long userId); User getSyncUser(String openId, String unionId, WxSyncLog wxSyncLog); }