re_talent_default.go 773 B

123456789101112131415161718
  1. package vo
  2. type ReTalentDefault struct {
  3. TalentId string `json:"talentId"`
  4. OpenId string `json:"openId"` // 表platform_kuaishou_user_info
  5. NickName string `json:"nickName"`
  6. HeadUri string `json:"headUri"`
  7. City string `json:"city"`
  8. Gender int64 `json:"gender"` // 0未知 1男 2女
  9. TalentPhone string `json:"talentPhone"` // 表youngee_talent_info
  10. TaskId string `json:"taskId"` // 任务id
  11. DraftFee float64 `json:"draftFee"` // 稿费价格
  12. SettleAmount float64 `json:"settleAmount"` // 结算金额
  13. DefaultTime string `json:"defaultTime"` // 违约时间
  14. Reason string `json:"reason"` // 终止理由或解约原因
  15. OperatorName string `json:"operatorName"` // 操作人
  16. }