You cannot 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 gift_log
|
|
|
|
import "time"
|
|
|
|
type GiftLog struct {
|
|
Id uint64 `xorm:"pk autoincr"`
|
|
AdminId uint64
|
|
UserId uint64
|
|
Num int8
|
|
Created time.Time `xorm:"created"`
|
|
}
|