re_talent_default.go 555 B

12345678910111213141516
  1. package vo
  2. import "time"
  3. type ReTalentDefault struct {
  4. TalentId string `json:"talentId"`
  5. OpenId string `json:"openId"` // 表platform_kuaishou_user_info
  6. NickName string `json:"nickName"`
  7. HeadUri string `json:"headUri"`
  8. City string `json:"city"`
  9. TalentPhone string `json:"talentPhone"` // 表youngee_talent_info
  10. DraftFee float64 `json:"draftFee"` // 稿费价格
  11. SettleAmount float64 `json:"settleAmount"` // 结算金额
  12. DefaultTime time.Time `json:"defaultTime"` // 违约时间
  13. }