zhengyiming
2025-03-19 3dc3e616092694a0e300c8089593236f2cc7a6d1
packages/services/api/typings.d.ts
@@ -755,6 +755,12 @@
    groups?: FeatureGroupDto[];
  }
  interface GetOperateHistoryInput {
    pageModel?: Pagination;
    relationId?: string;
    operateName?: string;
  }
  interface GetPayOrderForJsAPIInput {
    pageModel?: Pagination;
    checkChannelId?: string;
@@ -1095,6 +1101,10 @@
    resource?: string;
  }
  interface LogErrorInput {
    error?: string;
  }
  interface MethodParameterApiDescriptionModel {
    name?: string;
    typeAsString?: string;
@@ -1208,6 +1218,56 @@
    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;
@@ -1345,6 +1405,12 @@
    keyWords?: string;
  }
  interface QueryOperateHistoryByTypeInput {
    pageModel?: Pagination;
    typeId?: string;
    operateHistoryType?: OperateHistoryTypeEnum;
  }
  interface QueryUserAccountAllListInput {
    pageModel?: Pagination;
    checkChannelId?: string;