re_talent_default.go 709 B

12345678910111213141516
  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. TalentPhone string `json:"talentPhone"` // 表youngee_talent_info
  9. TaskId string `json:"taskId"` // 任务id
  10. DraftFee float64 `json:"draftFee"` // 稿费价格
  11. SettleAmount float64 `json:"settleAmount"` // 结算金额
  12. DefaultTime string `json:"defaultTime"` // 违约时间
  13. Reason string `json:"reason"` // 终止理由或解约原因
  14. OperatorName string `json:"operatorName"` // 操作人
  15. }