/**
 * 请求函数的参数
 */
export type ISelectRequestServiceQuery = [
    {
        params?: {
            key?: string;
        };
        data?: {
            key?: string;
        };
    }
];
