12 lines
230 B
Go
12 lines
230 B
Go
package usermodel
|
|
|
|
type UserLiveInProgress struct {
|
|
ID int `xorm:"id pk autoincr"`
|
|
DeckID int `xorm:"deck_id"`
|
|
UserID int `xorm:"user_id"`
|
|
}
|
|
|
|
func (UserLiveInProgress) TableName() string {
|
|
return "user_live_in_progress"
|
|
}
|