re_talent_default.go 829 B

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