15 lines
355 B
Go
15 lines
355 B
Go
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
|
|
}
|