123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\logic;
-
- use think\facade\Env;
-
- class PaymentLogic
- {
-
- protected static $error = '';
- protected static $return_code = 0;
-
-
-
- public static function getError()
- {
- return self::$error;
- }
-
-
-
- public static function getReturnCode()
- {
- return self::$return_code;
- }
-
-
- }
|