Skip to content
  • This project
    • Loading...
  • Sign in

向汉 / uc-engine

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • member-service
  • ..
  • beans
  • WeiXinBeanDefinition.java
  • xianghan@topdraw.cn's avatar
    V1.1.0-future-UserCenter接口转移 · 5ed9739c
    5ed9739c
    xianghan@topdraw.cn authored 2022-01-24 14:04:31 +0800
WeiXinBeanDefinition.java 352 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.topdraw.weixin.beans;

import com.alibaba.fastjson.JSONObject;

public interface WeiXinBeanDefinition {

    String getAppId();

    String getCode();

    String getToken();

    String getSecret();

    String getOpenId();

    String getUnionId();

    String getNickname();

    String getHeadImgUrl();

    JSONObject getUserInfo();
}