user_pb.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. export interface UserFindChatListReply{
  2. list?:Array<UserChatInfo>;
  3. nextId?:number;
  4. }
  5. export interface UserChatInfo{
  6. /** 用户ID */
  7. personId?:string;
  8. /** 用户未读数 */
  9. unreadNum?:number;
  10. /** 上次发送内容 */
  11. lastContent?:string;
  12. /** 上次发送时间 */
  13. lastTime?:number;
  14. /** 好感度 */
  15. likeability?:number;
  16. /** 性别 */
  17. sex?:number;
  18. /** 头像 */
  19. AvatarUrl?:string;
  20. /** 昵称 */
  21. nickname?:string;
  22. /** 年龄 */
  23. age?:number;
  24. }
  25. export interface UserInfo{
  26. /** id */
  27. id?:string;
  28. /** 昵称 */
  29. nickname?:string;
  30. /** 头像链接 */
  31. avatarUrl?:string;
  32. /** 年龄 */
  33. age?:number;
  34. /** 性别 */
  35. sex?:number;
  36. /** 星座 */
  37. constellation?:string;
  38. /** 积分 */
  39. credit?:number;
  40. /** 标签 */
  41. tagList?:Array<number>;
  42. /** 签名 */
  43. signature?:string;
  44. /** 介绍语音 */
  45. introduceVoice?:string;
  46. /** 省 */
  47. province?:string;
  48. /** 市 */
  49. city?:string;
  50. /** 区 */
  51. area?:string;
  52. }
  53. export interface KeyRequest{
  54. key?:string;
  55. }