export interface ICnAgreementRequestConfig {
    /**
     * 自定义请求地址
     */
    url?: string;
    /**
     * 远程搜索参数名
     */
    searchKey?: string;
    /**
     * 请求格方法
     */
    method?: 'GET' | 'POST' | 'DELETE' | 'PUT';
}
