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 & {
@@ -161,6 +162,12 @@
  HALF_CHECK: string;
}
export interface iSYS_ROLE_PROD {
  ROLE_CODE: string;
  PROD_CODE: string;
  HALF_CHECK: string;
}
export interface iSYS_ROLE_WH {
  ROLE_CODE: string;
  WH_CODE: string;
@@ -300,6 +307,7 @@
export interface EntityPropertie {
  Name: string;
  DisplayName: string;
  Type: string;
}
@@ -332,3 +340,5 @@
export type ParamsListGetResultModel = BasicFetchResult<ParamsListItem>;
export type LoginLogPageListGetResultModel = BasicFetchResult<LoginLogListItem>;
export type EntityListGetResultModel = BasicFetchResult<EntityPropertie>;
export type FunctionType = (...args: any[]) => any;