blob: d132e68b5cfe836c89ab7a870987c20f3f0f57c6 (
plain) (
tree)
|
|
package model
import (
"time"
uModel "donetick.com/core/internal/user/model"
)
type UserExtended struct {
uModel.User
Credit int `gorm:"column:amount;->"`
SubscriptionStatus *string `gorm:"column:status;<-:false"` // read one column
ExpiredAt *time.Time `gorm:"column:expired_at;<-:false"` // read one column
}
|