Files
honoka-chan/internal/model/user/userlivegoal.go
T
2026-06-01 21:48:41 +08:00

16 lines
467 B
Go

package usermodel
import "honoka-chan/internal/constant"
type UserLiveGoal struct {
ID int `xorm:"id pk autoincr"`
LiveDifficultyID int `xorm:"live_difficulty_id"`
UserID int `xorm:"user_id"`
GoalType constant.LiveGoalType `xorm:"goal_type"`
CompletedAt int64 `xorm:"completed_at"`
}
func (UserLiveGoal) TableName() string {
return "user_live_goal"
}