diff --git a/src/api/system/client/types.ts b/src/api/system/client/types.ts index 1c505ac..e67f95f 100644 --- a/src/api/system/client/types.ts +++ b/src/api/system/client/types.ts @@ -24,10 +24,15 @@ export interface ClientVO { */ grantTypeList: string[]; + /** + * 设备类型 + */ + deviceType: string; + /** * token活跃超时时间 */ - activityTimeout: number; + activeTimeout: number; /** * token固定超时 @@ -67,10 +72,15 @@ export interface ClientForm extends BaseEntity { */ grantTypeList?: string[]; + /** + * 设备类型 + */ + deviceType?: string; + /** * token活跃超时时间 */ - activityTimeout?: number; + activeTimeout?: number; /** * token固定超时 @@ -105,10 +115,15 @@ export interface ClientQuery extends PageQuery { */ grantType?: string; + /** + * 设备类型 + */ + deviceType?: string; + /** * token活跃超时时间 */ - activityTimeout?: number; + activeTimeout?: number; /** * token固定超时 diff --git a/src/views/system/client/index.vue b/src/views/system/client/index.vue index 5191108..2130d03 100644 --- a/src/views/system/client/index.vue +++ b/src/views/system/client/index.vue @@ -56,7 +56,12 @@ - + + + +