import {getRequest,postRequest} from "../libs/axios";
|
|
//10.查询历年社会保险参保人员分析图数据接口
|
export const getPersonChart = (params) => {
|
return postRequest('/webservice/app/social/getPersonChart.do', params)
|
}
|
|
//11.查询社会保险参保人员统计表数据接口
|
export const getPersonTable = (params) => {
|
return postRequest('/webservice/app/social/getPersonTable.do', params)
|
}
|
|
//34.查询社会保障基金统计表数据接口
|
export const getStatisticsTable = (params) => {
|
return postRequest('/webservice/app/social/getStatisticsTable.do', params)
|
}
|
|
//12.查询职工养老保险参保人数数据接口
|
export const getSecurityTable = (params) => {
|
return postRequest('/webservice/app/social/getSecurityTable.do', params)
|
}
|
|
//13.查询近一年职工养老保险参保人数折线图数据接口
|
export const getSecurityDetailChart = (params) => {
|
return postRequest('/webservice/app/social/getSecurityDetailChart.do', params)
|
}
|
|
//14.查询社会保险参保人数表格数据接口
|
export const getInsuranceTable = (params) => {
|
return postRequest('/webservice/app/social/getInsuranceTable.do', params)
|
}
|
|
//15.查询社保征缴收入明细总览表格数据接口
|
export const getFundincomeTable = (params) => {
|
return postRequest('/webservice/app/social/getFundincomeTable.do', params)
|
}
|
|
//16.查询社保征缴收入和参保人数平均值表格数据接口
|
export const getAverageTable = (params) => {
|
return postRequest('/webservice/app/social/getAverageTable.do', params)
|
}
|
|
//17.查询社保卡持卡人数数据接口
|
export const getCardNumsTable = (params) => {
|
return postRequest('/webservice/app/social/getCardNumsTable.do',params)
|
}
|
|
// 35. 查询历年社保基金数据分析图数据接口
|
export const getStatisticsChart = (params) => {
|
return postRequest('/webservice/app/social/getStatisticsChart.do',params)
|
}
|