Q3学习计划
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
285 B

2 months ago
  1. /** 小程序登录 登录用户信息 */
  2. export type LoginResult = {
  3. /** 用户ID */
  4. id: number
  5. /** 头像 */
  6. avatar: string
  7. /** 账户名 */
  8. account: string
  9. /** 昵称 */
  10. nickname?: string
  11. /** 手机号 */
  12. mobile: string
  13. /** 登录凭证 */
  14. token: string
  15. }