| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 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;
- type?:string;
- identityID?:number;
- openId?: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;
- }
|