get_all_product_param.go 361 B

12345678910
  1. package vo
  2. type GetAllProductParam struct {
  3. EnterpriseId string `json:"enterprise_id"`
  4. SubAccountId int64 `json:"sub_account_id"`
  5. ProductType int64 `json:"product_type"` // 商品类型(0一般商品 1快手商品
  6. ProductTitle string `json:"product_title"` // 商品标题
  7. Page int `json:"page"`
  8. PageSize int `json:"page_size"`
  9. }