| | |
| | | customErrorHandler?: (error: any) => boolean; |
| | | } |
| | | |
| | | interface AreaTreeNode extends AreaInfo { |
| | | children?: AreaTreeNode[]; |
| | | } |
| | | |
| | | type PriceVersionInfoItem = Omit<API.PriceVersionInfo, 'price'> & { |
| | | price: string; |
| | | }; |
| | | |
| | | interface CategoryMenu { |
| | | type?: number; |
| | | } |
| | | |
| | | interface MyCertificationAuditDto { |
| | | /** |
| | | * 前端用于判断状态的status |
| | |
| | | /**接口返回的原始头像 */ |
| | | originalAvatarUrl?: string |
| | | } |
| | | |
| | | interface SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOptionMap{ |
| | | field1?:string |
| | | } |
| | | |
| | | interface SelectOptionStringGetDictionaryDataSelectQueryResultOption{ |
| | | fieldNamesMap?: SelectQueryResultOptionGuidGetDictionaryCategorySelectQueryOptionMap; |
| | | code?:string |
| | | } |
| | | |
| | | interface SelectOptionGuidGetDictionaryCategorySelectQueryOption{ |
| | | code?:string |
| | | } |
| | | |
| | | interface AreaTreeNode { |
| | | children?: AreaTreeNode[]; |
| | | /** 编码 */ |
| | | areaCode?: string; |
| | | /** 父级编码 */ |
| | | parentCode?: string; |
| | | /** 名称 */ |
| | | areaName?: string; |
| | | /** 1省 2市 3区 4镇 */ |
| | | layer?: number; |
| | | /** 排序 */ |
| | | sort?: number; |
| | | id?: string |
| | | quickQuery?: string |
| | | } |
| | | |
| | | interface GetTaskInfoQueryResult{ |
| | | enterpriseName?:string |
| | | } |
| | | } |