fix(core): 统一用户昵称字段名称从 nickName 改为 nick

This commit is contained in:
dubai
2026-01-11 14:04:57 +08:00
parent bd51228293
commit d12769dd29
19 changed files with 31 additions and 31 deletions

View File

@@ -19,7 +19,7 @@ export interface User {
email: string;
loginDate: string;
loginIp: string;
nickName: string;
nick: string;
phonenumber: string;
remark: string;
roles: Role[];

View File

@@ -32,7 +32,7 @@ export interface User {
tenantId: string;
deptId: number;
userName: string;
nickName: string;
nick: string;
userType: string;
email: string;
phonenumber: string;

View File

@@ -9,7 +9,7 @@ export interface SocialInfo {
refreshToken: string;
openId: string;
userName: string;
nickName: string;
nick: string;
email: string;
avatar: string;
accessCode?: any;

View File

@@ -32,7 +32,7 @@ export interface Flow {
flowCode?: any;
version?: any;
runDuration: string;
nickName?: any;
nick?: any;
}
export interface FlowInfoResponse {