local_create_param.go 671 B

12345678910111213
  1. package vo
  2. type LocalCreateParam struct {
  3. EnterpriseId string `json:"enterprise_id"`
  4. SubAccountId int64 `json:"sub_account_id"`
  5. Platform int64 `json:"platform"`
  6. LocalType int64 `json:"local_type"` // 项目类型,1代表全流程项目,2代表专项项目
  7. ServiceChargeRate float64 `json:"service_charge_rate"`
  8. StoreId int64 `json:"store_id"` // 门店id
  9. PromoteBody int64 `json:"promote_body"` // 推广主体(1门店 2团购)
  10. Donate int64 `json:"donate"` // 赠送达人套餐(1有赠送 2无赠送)
  11. TeamBuyingId int64 `json:"team_buying_id"` // 团购id
  12. }