wupengfei
9 天以前 03ffdd67fc4c40f3e9443931a0aa55e508182873
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
declare namespace API {
  interface RequestConfig extends GlobalType.RequestConfig {
    needNProcess?: boolean;
    showLoading?: boolean;
    /**
     * 是否获取原始的AxiosResponse
     */
    getResponse?: boolean;
    /**
     * 跳过默认错误处理
     */
    skipErrorHandler?: boolean;
    mock?: boolean;
    customErrorHandler?: (error: any) => boolean;
  }
 
  interface SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOptionMap{
    field1?:string
  }
 
  interface SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOption{
    fieldNamesMap?: SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOptionMap;
    code?:string
  }
 
  interface SelectQueryResultOptionGuidGetDictionaryDataSelectQueryResultOption{
    code?:string
  }
 
}