1
This commit is contained in:
20
api/system/access-key/model/index.ts
Normal file
20
api/system/access-key/model/index.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* AccessKey
|
||||
*/
|
||||
export interface AccessKey {
|
||||
id?: number;
|
||||
phone?: string;
|
||||
accessKey?: string;
|
||||
accessSecret?: string;
|
||||
createTime?: string;
|
||||
tenantId?: number;
|
||||
code?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* AccessKey搜索条件
|
||||
*/
|
||||
export interface AccessKeyParam {
|
||||
id?: number;
|
||||
accessKey?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user