update 更新字段命名 activityTimeout -> activeTimeout ;

update 新增字段设备类型 deviceType ;
This commit is contained in:
Michelle.Chung
2023-06-27 09:03:51 +08:00
parent 9b6dc3e844
commit 892c84f32a
2 changed files with 42 additions and 8 deletions

View File

@ -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固定超时