# coding: utf-8 # 支付/提现 API 错误相关 module Reapal module Http module ErrorCode def self.deposit_common @_deposit ||= %w(0000 0001 0003 0004 0005 0201 0202 0203 0204 0205 0206 0207 0208 0209 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1801 1802 1803 1804 1805 1901 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1047 1048 1049 1050 1051 1088 1115 1806 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2027 2028 2029 2030 2031 2032 2033 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3051 3052 3053 3054 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3073 3074 3075 3077 3078 3079 3080 3081 3083 3084 3086 3088 3094 3095 3096 3097 3098 3099 3100 3135 3136 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 6001 6002) | common end def self.deposit_apply_api @_deposit_apply_api ||= %w(1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714) | deposit_common end def self.deposit_confirm_api @_deposit_confirm_api ||= %w(1901) | deposit_common end def self.deposit_sms_api @_deposit_sms_api ||= [] | deposit_common end def self.deposit_query @_deposit_query ||= %w(0208) | deposit_common end def self.withdraw_query @_withdraw_query ||= %w(0301 0302 0303 0304 0305 0306 0307 0308 0309 0310 0311 0312 0313 0314 0315 0316 0317 0318 0319 0320 0321 0322 0333 0324 0326 0327 0328 0329 0330 0331 0332 0333 0334 0335 0336 0337 0338 0339 0340) | common end def self.sub_account @_sub_account ||= %w(0001 1601 1602 1603 1604 1605 1606 1607) | common end def self.sub_account_query @_sub_account_query ||= %w(1608 1609 1610 1611) | common end end # module ErrorCode end end