| 123456789101112131415161718192021222324 |
- <?php
- namespace WY\app\model;
- use WY\app\libs\Http;
- use WY\app\model\Yimadai;
- if (!defined('WY_ROOT')) {
- exit;
- }
- class Paybank
- {
- function __construct()
- {
- $this->pay = new Yimadai();
- }
- public function put($data)
- {
- return $this->pay->put($data);
- }
- public function getRet($code)
- {
- return $this->pay->getRet($code);
- }
- }
- ?>
|