|
@@ -10,10 +10,10 @@ type YoungeeTalentInfo struct {
|
|
|
TalentWxOpenid string `gorm:"column:talent_wx_openid;NOT NULL"` // 达人的微信openid
|
|
|
TalentWxNickname string `gorm:"column:talent_wx_nickname"` // 达人的微信昵称
|
|
|
TalentWxNumber string `gorm:"column:talent_wx_number"` // 达人微信号
|
|
|
- Income int64 `gorm:"column:income;default:0"` // 收益总数
|
|
|
- Withdrawing int64 `gorm:"column:withdrawing;default:0"` // 提现中金额
|
|
|
- Canwithdraw int64 `gorm:"column:canwithdraw;default:0"` // 可提现金额
|
|
|
- Withdrawed int64 `gorm:"column:withdrawed;default:0"` // 已提现金额
|
|
|
+ Income float64 `gorm:"column:income;default:0"` // 收益总数
|
|
|
+ Withdrawing float64 `gorm:"column:withdrawing;default:0"` // 提现中金额
|
|
|
+ Canwithdraw float64 `gorm:"column:canwithdraw;default:0"` // 可提现金额
|
|
|
+ Withdrawed float64 `gorm:"column:withdrawed;default:0"` // 已提现金额
|
|
|
TalentGender int `gorm:"column:talent_gender"` // 性别,0未知 1男 2女
|
|
|
TalentPhoneNumber string `gorm:"column:talent_phone_number"` // 电话号码
|
|
|
TalentAgeBracket int `gorm:"column:talent_age_bracket"` // 年龄段,取tallent_age_bracket表id
|