Skip to content

Commit

Permalink
feat: update api-client
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKin committed Nov 28, 2024
1 parent 99c0a6f commit 105f72b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3677,18 +3677,24 @@
"StrategyPageVO" : {
"type" : "object",
"properties" : {
"createTime" : {
"type" : "string"
},
"id" : {
"type" : "integer",
"format" : "int64"
},
"isSystemReserved" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
},
"type" : {
"$ref" : "#/components/schemas/StrategyTypeEnum"
}
},
"required" : [ "id", "name", "type" ]
"required" : [ "createTime", "id", "isSystemReserved", "name", "type" ]
},
"CommonResponse_PageResult_StrategyPageVO" : {
"type" : "object",
Expand Down
12 changes: 12 additions & 0 deletions ui/packages/api-client/src/models/strategy-page-vo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 105f72b

Please sign in to comment.