/* eslint-disable */
|
// @ts-ignore
|
import { request } from '@/utils/request';
|
|
/** 查询数据看板奖励金使用排行 GET /api/DataBoard/GetDataBoardBountyUseAmountRank */
|
export async function getDataBoardBountyUseAmountRank(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardBountyUseAmountRankParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardBountyUseAmountRankOutput>(
|
'/api/DataBoard/GetDataBoardBountyUseAmountRank',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板投保人数排行 GET /api/DataBoard/GetDataBoardInsurePeopleCountRank */
|
export async function getDataBoardInsurePeopleCountRank(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardInsurePeopleCountRankParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardInsurePeopleCountRankOutput>(
|
'/api/DataBoard/GetDataBoardInsurePeopleCountRank',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板新增申报批次 GET /api/DataBoard/GetDataBoardNewBountyApplyCount */
|
export async function getDataBoardNewBountyApplyCount(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardNewBountyApplyCountParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardNewBountyApplyCountOutput>(
|
'/api/DataBoard/GetDataBoardNewBountyApplyCount',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
input: undefined,
|
...params['input'],
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板新增发放额 GET /api/DataBoard/GetDataBoardNewBountyReleaseAmountCount */
|
export async function getDataBoardNewBountyReleaseAmountCount(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardNewBountyReleaseAmountCountParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardNewBountyReleaseAmountCountOutput>(
|
'/api/DataBoard/GetDataBoardNewBountyReleaseAmountCount',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
input: undefined,
|
...params['input'],
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板新增发放额 GET /api/DataBoard/GetDataBoardNewBountyUseAmountCount */
|
export async function getDataBoardNewBountyUseAmountCount(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardNewBountyUseAmountCountParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardNewBountyUseAmountCountOutput>(
|
'/api/DataBoard/GetDataBoardNewBountyUseAmountCount',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
input: undefined,
|
...params['input'],
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板新增入驻企业 GET /api/DataBoard/GetDataBoardNewCustomerCount */
|
export async function getDataBoardNewCustomerCount(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardNewCustomerCountParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardNewCustomerCountOutput>(
|
'/api/DataBoard/GetDataBoardNewCustomerCount',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
input: undefined,
|
...params['input'],
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板投保人数对比 GET /api/DataBoard/GetDataBoardNewInsurePeopleCount */
|
export async function getDataBoardNewInsurePeopleCount(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardNewInsurePeopleCountParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardNewInsurePeopleCountOutput>(
|
'/api/DataBoard/GetDataBoardNewInsurePeopleCount',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
input: undefined,
|
...params['input'],
|
},
|
...(options || {}),
|
}
|
);
|
}
|
|
/** 查询数据看板概况 GET /api/DataBoard/GetDataBoardOverview */
|
export async function getDataBoardOverview(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardOverviewParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardOverviewOutput>('/api/DataBoard/GetDataBoardOverview', {
|
method: 'GET',
|
params: {
|
...params,
|
input: undefined,
|
...params['input'],
|
},
|
...(options || {}),
|
});
|
}
|
|
/** 查询数据看板园区概况 GET /api/DataBoard/GetDataBoardOverviewByPark */
|
export async function getDataBoardOverviewByPark(
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
params: API.APIgetDataBoardOverviewByParkParams,
|
options?: API.RequestConfig
|
) {
|
return request<API.GetDataBoardOverviewByParkOutput>(
|
'/api/DataBoard/GetDataBoardOverviewByPark',
|
{
|
method: 'GET',
|
params: {
|
...params,
|
},
|
...(options || {}),
|
}
|
);
|
}
|