re_supplier_pool_info.go 787 B

12345678910111213
  1. package vo
  2. type ReSupplierPoolInfo struct {
  3. SupplierPreview *ReSupplierPreview `json:"supplierPreview"`
  4. PhoneNumber string `json:"phoneNumber"` // 手机号
  5. WechatId string `json:"wechatId"` // 微信号
  6. WechatUrl string `json:"wechatUrl"` // 微信二维码
  7. CooperateNum int64 `json:"cooperateNum"` // 受邀合作次数
  8. UploadTalentNum int64 `json:"uploadTalentNum"` // 提报达人数
  9. CooperateTalentNum int64 `json:"cooperateTalentNum"` // 合作达人数
  10. AgreeTime string `json:"agreeTime"` // 入库时间
  11. EnterpriseOperator string `json:"enterpriseOperator"` // 邀请操作人
  12. }