code.go 884 Bytes
Newer Older
wangp's avatar
wangp committed
1 2 3 4 5 6 7 8
package base

/*
返回码
*/

const (
	// Success 请求成功
wangp's avatar
wangp committed
9 10
	//Success = 1000
	Success = 0
wangp's avatar
wangp committed
11
	// ServerError 服务器错误
wangp's avatar
wangp committed
12 13
	//ServerError = 1100
	ServerError = 9
wangp's avatar
wangp committed
14
	// Warning 警告
wangp's avatar
wangp committed
15 16
	//Warning = 1200
	Warning = 1
wangp's avatar
wangp committed
17 18 19 20 21 22 23 24

	// FailedToObtainVerificationCode 验证码获取失败
	//FailedToObtainVerificationCode = 1001
	// PleaseCheckIfThePhoneNumberIsEnteredCorrectly 请检查电话号码是否输入正确
	//PleaseCheckIfThePhoneNumberIsEnteredCorrectly = 1002
	// VerificationCodeError 验证码错误
	//VerificationCodeError = 1003
	// AuthorizationEmpty token为空
wangp's avatar
wangp committed
25 26
	//AuthorizationEmpty = 1004
	AuthorizationEmpty = 4
wangp's avatar
wangp committed
27 28 29 30 31 32 33
	// ThisAccountDoesNotHavePermission  此账号没有权限
	//ThisAccountDoesNotHavePermission = 1005
	// ParameterValidationFailed 参数效验失败
	//ParameterValidationFailed = 1006
	// 此国家暂不支持
	//NotCurrentlySupportedInThisCountry = 1007
)