gp_param.go 322 B

12345678910111213
  1. package entity
  2. type GBPDPItem struct {
  3. DetectProductId int `json:"detect_product_id"`
  4. Name string `json:"keshi_name"`
  5. DetectItemIds []int `json:"detect_item_ids"`
  6. }
  7. type GPParam struct {
  8. Mobile string `json:"mobile"`
  9. DPItems []GBPDPItem `json:"dp_items"`
  10. Oper string `json:"oper"`
  11. }