1、自动续费
This commit is contained in:
8
common/global/config_key.go
Normal file
8
common/global/config_key.go
Normal file
@ -0,0 +1,8 @@
|
||||
package global
|
||||
|
||||
//ConfigKey
|
||||
const (
|
||||
流量代理有效天数 = "traffic_proxy_effective_day"
|
||||
长效号码续费标准 = "long_number_renew_deduction_standard"
|
||||
长效IP续费kk扣除标准 = "ip_renew_deduction_standard"
|
||||
)
|
||||
@ -22,6 +22,7 @@ var StatusCodeZh = map[int]string{
|
||||
SmsLongNumWaitCode: "短信验证码_长效号码已唤醒",
|
||||
SmsNotExisted: "号码不存在",
|
||||
SmsNotExpired: "号码未过期无法删除",
|
||||
SmsNotAutoRenew: "短效号码无法自动续期",
|
||||
}
|
||||
|
||||
var StatusCodeEn = map[int]string{
|
||||
@ -46,6 +47,7 @@ var StatusCodeEn = map[int]string{
|
||||
SmsLongNumWaitCode: "sms code long num wake up",
|
||||
SmsNotExisted: "number not exist",
|
||||
SmsNotExpired: "number not expired, can not delete",
|
||||
SmsNotAutoRenew: "num can not auto renew",
|
||||
}
|
||||
|
||||
func GetMsg(code int, lang string) string {
|
||||
@ -103,4 +105,6 @@ const (
|
||||
SmsNotExisted = 20018
|
||||
//号码未过期无法删除
|
||||
SmsNotExpired = 20019
|
||||
//短效号码无法自动续期
|
||||
SmsNotAutoRenew = 20020
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user