Ben Lin
2024-07-03 a745761147b17a42b4698250a170ef4c0fa0b09b
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;
}
@@ -300,6 +308,7 @@
export interface EntityPropertie {
  Name: string;
  DisplayName: string;
  Type: string;
}
@@ -332,3 +341,5 @@
export type ParamsListGetResultModel = BasicFetchResult<ParamsListItem>;
export type LoginLogPageListGetResultModel = BasicFetchResult<LoginLogListItem>;
export type EntityListGetResultModel = BasicFetchResult<EntityPropertie>;
export type FunctionType = (...args: any[]) => any;