feat: 客户端管理 表单

This commit is contained in:
dap
2024-09-12 14:41:28 +08:00
parent 1a8eeb2abe
commit aca098640a
6 changed files with 361 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
export interface Client {
id: number;
clientId: string;
clientKey: string;
clientSecret: string;
grantTypeList: string[];
grantType: string;
deviceType: string;
activeTimeout: number;
timeout: number;
status: string;
}