| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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;
- 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;
- }
|