作者 何书鹏
1 个管道 的构建 通过 耗费 0 秒

bug修改

... ... @@ -747,4 +747,30 @@ class BeforeToAfter extends Api
$housing_fund_rate_option = config('site.housing_fund_rate_option');
$this->success('成功',compact('housing_fund_rate','housing_fund_rate_option'));
}
/**
* @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'); //社保封顶金额
$social_bottom = config('site.social_bottom'); //社保保底金额
// 公积金基数
$housing_fund_top = config('site.housing_fund_top'); //公积金封顶金额
$housing_fund_bottom = config('site.housing_fund_bottom'); //公积金保底金额
$this->success('成功',compact('social_top','social_bottom','housing_fund_top','housing_fund_bottom'));
}
}
... ...
此 diff 太大无法显示。