bugfix: 一些bug修复
This commit is contained in:
@@ -85,14 +85,28 @@ export interface IQaRecord {
|
||||
answer: string;
|
||||
}
|
||||
|
||||
/** 最近问答记录分页请求 */
|
||||
export interface IRecordsRequest {
|
||||
/** 当前页码,从 1 开始 */
|
||||
page: number;
|
||||
/** 每页数量 */
|
||||
size: number;
|
||||
}
|
||||
|
||||
/** 最近问答记录接口响应 */
|
||||
export interface IRecordsResponse {
|
||||
/** 管理接口是否成功 */
|
||||
success: boolean;
|
||||
/** 失败时的本地安全文案 */
|
||||
message?: string;
|
||||
/** 当前进程内最近问答记录,最新在前 */
|
||||
/** 当前页问答记录,最新在前 */
|
||||
records: IQaRecord[];
|
||||
/** 当前页码,从 1 开始 */
|
||||
page: number;
|
||||
/** 每页数量 */
|
||||
size: number;
|
||||
/** 当前进程内问答记录总数 */
|
||||
total: number;
|
||||
}
|
||||
|
||||
/** 清空缓存接口响应 */
|
||||
|
||||
Reference in New Issue
Block a user