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.
31 lines
1007 B
31 lines
1007 B
package model |
|
|
|
// EncryptAccount aso account. |
|
type EncryptAccount struct { |
|
Mid int64 `json:"mid"` |
|
UserID string `json:"userid"` |
|
Uname string `json:"uname"` |
|
Pwd string `json:"pwd"` |
|
Salt string `json:"salt"` |
|
Email string `json:"email"` |
|
Tel []byte `json:"tel"` |
|
CountryID int64 `json:"country_id"` |
|
MobileVerified int8 `json:"mobile_verified"` |
|
Isleak int8 `json:"isleak"` |
|
Mtime string `json:"mtime"` |
|
} |
|
|
|
// OriginAccount origin aso account. |
|
type OriginAccount struct { |
|
Mid int64 `json:"mid"` |
|
UserID string `json:"userid"` |
|
Uname string `json:"uname"` |
|
Pwd string `json:"pwd"` |
|
Salt string `json:"salt"` |
|
Email string `json:"email"` |
|
Tel string `json:"tel"` |
|
CountryID int64 `json:"country_id"` |
|
MobileVerified int8 `json:"mobile_verified"` |
|
Isleak int8 `json:"isleak"` |
|
Mtime string `json:"modify_time"` |
|
}
|
|
|