|
@@ -162,6 +162,27 @@ class RsApi {
|
|
|
return json_decode($res,true);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询晋江养老缴费记录
|
|
|
+ * @param $card
|
|
|
+ * @param $start
|
|
|
+ * @param $end
|
|
|
+ * @return array|mixed
|
|
|
+ */
|
|
|
+ public function YL00018($card,$start,$end){
|
|
|
+ $check_res = $this->check();
|
|
|
+ if(!$check_res) return ['code' => '403','message' => '测试环境'];
|
|
|
+ $param = [
|
|
|
+ 'aac147' => $card,
|
|
|
+ 'aae030' => $start,
|
|
|
+ 'aae031' => $end,
|
|
|
+ 'sjhjLog' => $this->sjhjLog
|
|
|
+ ];
|
|
|
+
|
|
|
+ $res = $this->getInfo('YL00018',$param);
|
|
|
+
|
|
|
+ return json_decode($res,true);
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 根据统一社会信用代码查询企业基本信息
|