Ben Lin
2024-07-16 5a4d79d9765dfca8812638b57d5f5fe21f7a06ee
src/api/tigerapi/model/systemModel.ts
@@ -14,6 +14,7 @@
  ip?: string;
  ad_info?: AD_INFO;
  ORG_CODE: string;
  PROD_CODE: string;
};
export type AccountParams = BasicPageParams & {
@@ -50,6 +51,7 @@
  isExt: string;
  isUpdate: boolean;
  show: string;
  btnType: number;
};
export type SaveRoleParams = {
@@ -158,6 +160,12 @@
export interface iSYS_ROLE_ORG {
  ROLE_CODE: string;
  ORG_CODE: string;
  HALF_CHECK: string;
}
export interface iSYS_ROLE_PROD {
  ROLE_CODE: string;
  PROD_CODE: string;
  HALF_CHECK: string;
}
@@ -323,6 +331,19 @@
}
/**
 * @description: 自定义弹出框参数类型
 * @return {*}
 */
export interface CustModalParams {
  cType: string; //类型
  values: {}; //Modal框内表单数据
  mValues: {}; //主表数据
  initFnName: string; //初始化方法名
  others: {}; //一些其他数据
  FnName: string; //自定义方法名
}
/**
 * @description: Request list return value
 */
@@ -333,3 +354,5 @@
export type ParamsListGetResultModel = BasicFetchResult<ParamsListItem>;
export type LoginLogPageListGetResultModel = BasicFetchResult<LoginLogListItem>;
export type EntityListGetResultModel = BasicFetchResult<EntityPropertie>;
export type FunctionType = (...args: any[]) => any;