mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
13 lines
186 B
Go
13 lines
186 B
Go
package model
|
|
|
|
import "go-common/library/time"
|
|
|
|
// SignUp table sign_up
|
|
type SignUp struct {
|
|
ID int64
|
|
Mid int64
|
|
State int
|
|
BeginDate time.Time
|
|
EndDate time.Time
|
|
}
|