新增 用户行为记录 新增岗位信息管理

This commit is contained in:
bin
2025-12-02 14:05:46 +08:00
parent 484aceb6f9
commit a2e532389e
9 changed files with 759 additions and 9 deletions

View File

@@ -35,4 +35,21 @@ declare namespace API.MobileUser {
education?: string;
politicalAffiliation?: string;
}
export interface LogParams {
userId?: string;
current?: string;
pageSize?: string;
}
export interface LogRow {
opTime?: string;
content?: string;
}
export interface LogResult {
total: number;
rows: LogRow[];
code: number;
msg: string;
}
}