...
|
...
|
@@ -503,4 +503,30 @@ class AfterToBefore extends Api |
|
|
$this->success('请求成功',compact('param','salary_average','social_user','social_user_money','social_company','social_company_money','person_fee_average','company_cost','user_go','company_go','social_base','housing_fund_base'));
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @ApiTitle (社保和公积金汇缴基数-税后)
|
|
|
* @ApiSummary (社保和公积金汇缴基数-税后)
|
|
|
* @ApiMethod (POST)
|
|
|
* @ApiReturn({
|
|
|
"code": 1,
|
|
|
"msg": "成功",
|
|
|
"time": "1602306155",
|
|
|
"data": {
|
|
|
"social_top": "28017", //社保汇缴基数封顶金额
|
|
|
"social_bottom": "4927", //社保汇缴基数保底金额
|
|
|
"housing_fund_top": "28017", //公积金汇缴基数封顶金额
|
|
|
"housing_fund_bottom": "2480" //公积金汇缴基数保底金额
|
|
|
}
|
|
|
})
|
|
|
*/
|
|
|
public function getBase(){
|
|
|
// 社保基数
|
|
|
$social_top = config('site.social_top_after'); //社保封顶金额
|
|
|
$social_bottom = config('site.social_bottom_after'); //社保保底金额
|
|
|
// 公积金基数
|
|
|
$housing_fund_top = config('site.housing_fund_top_after'); //公积金封顶金额
|
|
|
$housing_fund_bottom = config('site.housing_fund_bottom_after'); //公积金保底金额
|
|
|
$this->success('成功',compact('social_top','social_bottom','housing_fund_top','housing_fund_bottom'));
|
|
|
}
|
|
|
} |
...
|
...
|
|