user_pb.ts 603 B

1234567891011121314151617181920212223242526272829303132
  1. export interface UserInfo{
  2. /** id */
  3. id?:string;
  4. /** 昵称 */
  5. nickname?:string;
  6. /** 头像链接 */
  7. avatarUrl?:string;
  8. /** 年龄 */
  9. age?:number;
  10. /** 性别 */
  11. sex?:number;
  12. /** 星座 */
  13. constellation?:string;
  14. /** 积分 */
  15. credit?:number;
  16. /** 标签 */
  17. tagList?:Array<number>;
  18. /** 签名 */
  19. signature?:string;
  20. /** 介绍语音 */
  21. introduceVoice?:string;
  22. /** 省 */
  23. province?:string;
  24. /** 市 */
  25. city?:string;
  26. /** 区 */
  27. area?:string;
  28. }
  29. export interface KeyRequest{
  30. key?:string;
  31. }