Ben Lin
2024-06-09 38b2a8369513ebcc34c6dd01a176593b825fe71e
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 & {
@@ -158,6 +159,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;
}
@@ -333,3 +340,5 @@
export type ParamsListGetResultModel = BasicFetchResult<ParamsListItem>;
export type LoginLogPageListGetResultModel = BasicFetchResult<LoginLogListItem>;
export type EntityListGetResultModel = BasicFetchResult<EntityPropertie>;
export type FunctionType = (...args: any[]) => any;