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.
|
package model |
|
|
|
import "go-common/library/time" |
|
|
|
// InviteCode 邀请码表 |
|
type InviteCode struct { |
|
Code int64 `json:"code"` |
|
DeviceID string `json:"device_id"` |
|
Ctime time.Time `json:"ctime"` |
|
Mtime time.Time `json:"mtime"` |
|
}
|
|
|