chore(projects): release v0.10.3 thin branch

This commit is contained in:
Soybean
2023-06-15 19:35:35 +08:00
parent de2829fde7
commit d32e296473
122 changed files with 42 additions and 10893 deletions

29
src/typings/api.d.ts vendored
View File

@ -21,32 +21,3 @@ declare namespace ApiRoute {
home: AuthRoute.AllRouteKey;
}
}
declare namespace ApiUserManagement {
interface User {
/** 用户id */
id: string;
/** 用户名 */
userName: string | null;
/** 用户年龄 */
age: number | null;
/**
* 用户性别
* - 0: 女
* - 1: 男
*/
gender: '0' | '1' | null;
/** 用户手机号码 */
phone: string;
/** 用户邮箱 */
email: string | null;
/**
* 用户状态
* - 1: 启用
* - 2: 禁用
* - 3: 冻结
* - 4: 软删除
*/
userStatus: '1' | '2' | '3' | '4' | null;
}
}