You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
300 B
20 lines
300 B
/**
|
|
* 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;
|
|
}
|