| | |
| | | groups?: FeatureGroupDto[]; |
| | | } |
| | | |
| | | interface GetOperateHistoryInput { |
| | | pageModel?: Pagination; |
| | | relationId?: string; |
| | | operateName?: string; |
| | | } |
| | | |
| | | interface GetPayOrderForJsAPIInput { |
| | | pageModel?: Pagination; |
| | | checkChannelId?: string; |
| | |
| | | resource?: string; |
| | | } |
| | | |
| | | interface LogErrorInput { |
| | | error?: string; |
| | | } |
| | | |
| | | interface MethodParameterApiDescriptionModel { |
| | | name?: string; |
| | | typeAsString?: string; |
| | |
| | | modules?: Record<string, any>; |
| | | enums?: Record<string, any>; |
| | | } |
| | | |
| | | interface OperateHistoryDto { |
| | | /** 关联关系ID */ |
| | | relationId?: string; |
| | | /** 表名 */ |
| | | tableType?: number; |
| | | /** 操作 */ |
| | | operateName?: string; |
| | | /** 操作内容 */ |
| | | operateContent?: string; |
| | | /** 操作人 */ |
| | | creatorName?: string; |
| | | /** 操作时间 */ |
| | | creationTime?: string; |
| | | /** 操作细节 */ |
| | | operateDetail?: string; |
| | | } |
| | | |
| | | interface OperateHistoryDtoPageOutput { |
| | | pageModel?: Pagination; |
| | | objectData?: any; |
| | | data?: OperateHistoryDto[]; |
| | | } |
| | | |
| | | type OperateHistoryTypeEnum = |
| | | | 10 |
| | | | 11 |
| | | | 12 |
| | | | 13 |
| | | | 14 |
| | | | 15 |
| | | | 16 |
| | | | 17 |
| | | | 18 |
| | | | 19 |
| | | | 20 |
| | | | 21 |
| | | | 22 |
| | | | 23 |
| | | | 24 |
| | | | 25 |
| | | | 26 |
| | | | 27 |
| | | | 28 |
| | | | 29 |
| | | | 30 |
| | | | 31 |
| | | | 32 |
| | | | 40 |
| | | | 42; |
| | | |
| | | interface OrderInput { |
| | | property?: string; |
| | |
| | | keyWords?: string; |
| | | } |
| | | |
| | | interface QueryOperateHistoryByTypeInput { |
| | | pageModel?: Pagination; |
| | | typeId?: string; |
| | | operateHistoryType?: OperateHistoryTypeEnum; |
| | | } |
| | | |
| | | interface QueryUserAccountAllListInput { |
| | | pageModel?: Pagination; |
| | | checkChannelId?: string; |