init
This commit is contained in:
7
src/models/LogListParams.ts
Normal file
7
src/models/LogListParams.ts
Normal file
@ -0,0 +1,7 @@
|
||||
export interface LogListParams {
|
||||
urlSuffix: string;
|
||||
pageNum: number;
|
||||
pageSize: number;
|
||||
startTime?: string;
|
||||
endTime?: string;
|
||||
}
|
8
src/models/shortLink.ts
Normal file
8
src/models/shortLink.ts
Normal file
@ -0,0 +1,8 @@
|
||||
export interface ShortLink {
|
||||
id?: number;
|
||||
jumpUrl?: string;
|
||||
name?: string;
|
||||
urlPrefix?: string;
|
||||
urlSuffix?: string;
|
||||
validityTime?: string;
|
||||
}
|
5
src/models/shortLinkListResp.ts
Normal file
5
src/models/shortLinkListResp.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export interface ShortLinkListResp {
|
||||
rows: ShortLinkListResp[];
|
||||
total: number;
|
||||
msg: string;
|
||||
}
|
Reference in New Issue
Block a user