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.
12 lines
176 B
Go
12 lines
176 B
Go
![]()
3 weeks ago
|
package gift_log
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type GiftLog struct {
|
||
|
Id uint64 `xorm:"pk autoincr"`
|
||
|
AdminId uint64
|
||
|
UserId uint64
|
||
|
Num int8
|
||
|
Created time.Time `xorm:"created"`
|
||
|
}
|