feat: 长文本语音合成
This commit is contained in:
@@ -24,13 +24,15 @@ type User struct {
|
||||
OpenId string `gorm:"size:80;column:open_id" json:"openId" form:"openId"`
|
||||
AvatarId string `gorm:"size:50;column:avatar_id" json:"avatarId"`
|
||||
Avatar *Oss `gorm:"foreignKey:AvatarId" json:"avatar"`
|
||||
Gender int `gorm:"default:0" json:"gender"` // 性别 0:未知 1:男 2:女
|
||||
Country string `gorm:"size:50" json:"country"` // 国家
|
||||
Province string `gorm:"size:50" json:"province"` // 省份
|
||||
City string `gorm:"size:50" json:"city"` // 城市
|
||||
Language string `gorm:"size:20" json:"language"` // 语言
|
||||
IsVip int `gorm:"default:0" json:"isVip"` // 是否VIP 0:否 1:是
|
||||
VipExpireAt *time.Time `gorm:"column:vip_expire_at" json:"vipExpireAt"` // VIP过期时间
|
||||
Gender int `gorm:"default:0" json:"gender"` // 性别 0:未知 1:男 2:女
|
||||
Country string `gorm:"size:50" json:"country"` // 国家
|
||||
Province string `gorm:"size:50" json:"province"` // 省份
|
||||
City string `gorm:"size:50" json:"city"` // 城市
|
||||
Language string `gorm:"size:20" json:"language"` // 语言
|
||||
IsVip int `gorm:"default:0" json:"isVip"` // 是否VIP 0:否 1:是
|
||||
VipExpireAt *time.Time `gorm:"column:vip_expire_at" json:"vipExpireAt"` // VIP过期时间
|
||||
LastLoginIp string `gorm:"size:20;column:last_login_ip" json:"lastLoginIp"` // 最后登录IP
|
||||
LastLoginAt *time.Time `gorm:"column:last_login_at" json:"lastLoginAt"` // 最后登录时间
|
||||
}
|
||||
|
||||
func (u *User) GetAccount() string {
|
||||
|
||||
Reference in New Issue
Block a user