2025-07-28 18:15:40 +08:00
|
|
|
package global
|
|
|
|
|
|
|
|
|
|
//ConfigKey
|
|
|
|
|
const (
|
2025-08-23 16:38:04 +08:00
|
|
|
//流量代理有效天数
|
|
|
|
|
TrafficProxyEffectiveDay = "traffic_proxy_effective_day"
|
|
|
|
|
//短期号码扣除标准
|
|
|
|
|
ShortNumberDeductionStandard = "number_fee_short_term"
|
|
|
|
|
//长效号码扣除标准
|
|
|
|
|
LongNumberDeductionStandard = "number_fee_long_term"
|
|
|
|
|
//长效号码续费标准
|
|
|
|
|
LongNumberRenewDeductionStandard = "long_number_renew_deduction_standard"
|
|
|
|
|
//长效IP续费kk扣除标准
|
|
|
|
|
IPRenewDeductionStandard = "ip_renew_deduction_standard"
|
2025-07-29 18:16:12 +08:00
|
|
|
|
|
|
|
|
ProxyExpiryTime = "proxy_expiry_time" //代理过期记录保留时长
|
|
|
|
|
SmsExpiryTime = "sms_expiry_time" //接码过期记录保留时长
|
2025-07-28 18:15:40 +08:00
|
|
|
)
|