diff --git a/app/openapi/openapi.json b/app/openapi/openapi.json index ecc34e99..0e62c3b2 100644 --- a/app/openapi/openapi.json +++ b/app/openapi/openapi.json @@ -3677,10 +3677,16 @@ "StrategyPageVO" : { "type" : "object", "properties" : { + "createTime" : { + "type" : "string" + }, "id" : { "type" : "integer", "format" : "int64" }, + "isSystemReserved" : { + "type" : "boolean" + }, "name" : { "type" : "string" }, @@ -3688,7 +3694,7 @@ "$ref" : "#/components/schemas/StrategyTypeEnum" } }, - "required" : [ "id", "name", "type" ] + "required" : [ "createTime", "id", "isSystemReserved", "name", "type" ] }, "CommonResponse_PageResult_StrategyPageVO" : { "type" : "object", diff --git a/ui/packages/api-client/src/models/strategy-page-vo.ts b/ui/packages/api-client/src/models/strategy-page-vo.ts index 95ae1ebb..7892b57b 100644 --- a/ui/packages/api-client/src/models/strategy-page-vo.ts +++ b/ui/packages/api-client/src/models/strategy-page-vo.ts @@ -23,12 +23,24 @@ import type { StrategyTypeEnum } from './strategy-type-enum'; * @interface StrategyPageVO */ export interface StrategyPageVO { + /** + * + * @type {string} + * @memberof StrategyPageVO + */ + 'createTime': string; /** * * @type {number} * @memberof StrategyPageVO */ 'id': number; + /** + * + * @type {boolean} + * @memberof StrategyPageVO + */ + 'isSystemReserved': boolean; /** * * @type {string}