mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -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
|
||
|
|
}
|