zhengyiming
3 天以前 dd0a3e0ed394983c4fbacdab64cad6f8de5b4884
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
31
32
33
34
35
36
declare namespace API {
  interface RequestConfig extends GlobalType.RequestConfig {
    showNavigationBarLoading?: boolean;
    showLoading?: boolean;
    mock?: boolean;
    customErrorHandler?: (error: any) => boolean;
  }
 
  interface MyCertificationAuditDto {
    /**
     * 前端用于判断状态的status
     */
    frontStatus?: number
  }
  interface UserInfoV2 {
    /**
     * 前端用于判断状态的status
     */
    frontStatus?: number
    /**接口返回的原始头像 */
    originalAvatarUrl?: string
  }
 
  interface SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOptionMap{
    field1?:string
  }
 
  interface SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOption{
    fieldNamesMap?: SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOptionMap;
    code?:string
  }
 
  interface SelectQueryResultOptionGuidGetDictionaryDataSelectQueryResultOption{
    code?:string
  }
}