@@ -46,6 +46,7 @@ export interface IApiResponseDictData {
dict_id: string;
dict_name?: string;
dict_shortname?: string;
+ shortname?: string;
confidence: number;
creator_id: number;
updated_at: string;
@@ -63,6 +64,7 @@ export interface IApiResponseDictList {
data: {
rows: IApiResponseDictData[];
count: number;
+ time?: number;
};
}