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.
21 lines
399 B
21 lines
399 B
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
//MemberVerify is. |
|
type MemberVerify struct { |
|
Mid int64 `json:"mid"` |
|
Type int64 `json:"type"` |
|
Desc string `json:"desc"` |
|
} |
|
|
|
//AccountInfo is. |
|
type AccountInfo struct { |
|
Mid int64 `json:"mid"` |
|
Name string `json:"name"` |
|
Cert int64 `json:"cert"` |
|
CertDesc string `json:"certdesc"` |
|
Ts time.Time `json:"ts"` |
|
}
|
|
|