You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
338 B
23 lines
338 B
package model |
|
|
|
// Reg Pro args. |
|
const ( |
|
AccountType = 4 |
|
) |
|
|
|
// Tel level . |
|
const ( |
|
Nomal int8 = iota |
|
LevelOne |
|
LevelTwo |
|
LevelThree |
|
LevelFour |
|
) |
|
|
|
// QcloudRegProResp def. |
|
type QcloudRegProResp struct { |
|
Code int `json:"code"` |
|
CodeDesc string `json:"codeDesc"` |
|
Message string `json:"message"` |
|
Level int8 `json:"level"` |
|
}
|
|
|