| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- export interface GetIdentifyByAccountIDRequest{
- accountId?:number;
- appid?:string;
- }
- export interface GetIdentifyByAccountIDReply{
- openId?:string;
- appid?:string;
- }
- export interface CheckTextRequest{
- /** 待审核的文本 */
- text?:string;
- }
- export interface CheckTextReply{
- /** 是否通过 */
- isPass?:boolean;
- }
- export interface MediaID{
- mediaId?:string;
- }
- export interface MaterialLink{
- link?:string;
- }
- export interface RandomNicknameReply{
- nickname?:string;
- }
- export interface RandomAvatarReply{
- avatarUrl?:string;
- }
- export interface RandomAvatarListReply{
- list?:Array<string>;
- }
- export interface OpenIDAndAppIDRequest{
- openId?:string;
- appId?:string;
- }
- export interface IdentityInfo{
- pid?:string;
- }
- export interface UserInfoDB{
- /** id */
- id?:string;
- /** 昵称 */
- nickname?:string;
- /** 头像链接 */
- avatarUrl?:string;
- /** 手机号 */
- phone?:string;
- /** 性别 */
- sex?:number;
- /** 积分 */
- credit?:number;
- }
- export interface PartnerInfoDB{
- /** id */
- id?:string;
- /** 昵称 */
- nickname?:string;
- /** 头像链接 */
- avatarUrl?:string;
- /** 手机号 */
- phone?:string;
- /** 性别 */
- sex?:number;
- /** 积分 */
- credit?:number;
- }
- export interface AuthorizationRequest{
- jsCode?:string;
- appId?:string;
- type?:string;
- fromOpenId?:string;
- sex?:number;
- }
- export interface TokenReply{
- token?:string;
- appId?:string;
- }
- export interface DebugLoginRequest{
- id?:number;
- code?:string;
- }
- export interface LoginToken{
- pid?:string;
- type?:string;
- }
|