支付优化

This commit is contained in:
gongfuxiang
2021-12-03 01:02:07 +08:00
parent bcae35db5b
commit 8b744beae0
6 changed files with 119 additions and 51 deletions

View File

@ -272,5 +272,19 @@ class Order extends Common
return ApiService::ApiDataReturn(OrderService::OrderDelete($params));
}
/**
* 支付状态校验
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-01-08
* @desc description
*/
public function PayCheck()
{
$params = $this->data_post;
$params['user'] = $this->user;
return ApiService::ApiDataReturn(OrderService::OrderPayCheck($params));
}
}
?>