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
|
}
|
}
|