add_pricing.go 742 B

1234567891011121314151617181920212223
  1. package http_model
  2. type AddPricingRequest struct {
  3. ProjectType string `json:"project_type"` //项目类型
  4. ManuscriptForm string `json:"manuscript_form"` //稿费形式
  5. Platform string `json:"platform"` //社媒平台
  6. FansLow int64 `json:"fans_low"` //对应创作者 粉丝量
  7. FansHigh int64 `json:"fans_high"` //对应创作者 粉丝量
  8. ServiceCharge float32 `json:"service_charge"` //基础报价
  9. ServiceRate int64 `json:"service_rate"` //平台服务费
  10. }
  11. type AddPricingResponse struct {
  12. }
  13. func NewAddPricingRequest() *AddPricingRequest {
  14. return new(AddPricingRequest)
  15. }
  16. func NewAddPricingResponse() *CommonResponse {
  17. resp := new(CommonResponse)
  18. return resp
  19. }