| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**
- * 用户信息
- */
- export interface IUserInfoVo {
- id: number
- username: string
- avatar: string
- }
- /**
- * 用户token
- */
- export interface IUserTokenVo {
- token: string
- refreshToken?: string
- refreshExpire?: number
- }
- /**
- * 登录返回的信息
- */
- export interface IUserLogin {
- id: string
- username: string
- token: string
- refreshToken?: string
- refreshExpire?: number
- }
- /**
- * 获取验证码
- */
- export interface ICaptcha {
- captchaEnabled: boolean
- uuid: string
- image: string
- }
- /**
- * 上传成功的信息
- */
- export interface IUploadSuccessInfo {
- fileId: number
- originalName: string
- fileName: string
- storagePath: string
- fileHash: string
- fileType: string
- fileBusinessType: string
- fileSize: number
- }
- /**
- * 更新用户信息
- */
- export interface IUpdateInfo {
- id: number
- name: string
- sex: string
- }
- /**
- * 更新用户信息
- */
- export interface IUpdatePassword {
- id: number
- oldPassword: string
- newPassword: string
- confirmPassword: string
- }
|