add_youngee.go 674 B

1234567891011121314151617181920212223
  1. package http_model
  2. type AddYoungeeRequest struct {
  3. ProjectType string `json:"project_type"` //项目类型
  4. TaskType string `json:"task_type"` //任务形式
  5. Platform string `json:"platform"` //社媒平台
  6. ContentType string `json:"content_type"` //内容形式
  7. Reason string `json:"reason"` //奖励原因
  8. //Points float32 `json:"points"` //积分奖励
  9. Cash int64 `json:"cash"` //现金奖励
  10. }
  11. type AddYoungeeResponse struct {
  12. }
  13. func NewAddYoungeeRequest() *AddYoungeeRequest {
  14. return new(AddYoungeeRequest)
  15. }
  16. func NewAddYoungeeResponse() *CommonResponse {
  17. resp := new(CommonResponse)
  18. return resp
  19. }