jdl_entity.go 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. package entity
  2. /**
  3. * @Author: qz
  4. * @Date: 2022/6/23 18:58
  5. * @Description:
  6. */
  7. type JDLParams struct {
  8. SenderProvince string `json:"sender_province"`
  9. SenderCity string `json:"sender_city"`
  10. SenderDistrict string `json:"sender_district"`
  11. SenderDetailAddress string `json:"sender_detailAddress"`
  12. SenderName string `json:"sender_name"`
  13. SenderMobile string `json:"sender_mobile"`
  14. ReceiverProvince string `json:"receiver_province"`
  15. ReceiverCity string `json:"receiver_city"`
  16. ReceiverDistrict string `json:"receiver_district"`
  17. ReceiverDetailAddress string `json:"receiver_detailAddress"`
  18. ReceiverName string `json:"receiver_name"`
  19. ReceiverMobile string `json:"receiver_mobile"`
  20. XnCode string `json:"order_id"`
  21. SendStart string `json:"send_start"`
  22. SendEnd string `json:"send_end"`
  23. Remark string `json:"remark"`
  24. CustomerCode string `json:"customer_code"`
  25. }
  26. type JDLCheck struct {
  27. PickUpCode string `json:"pick_up_code"`
  28. CustomerCode string `json:"customer_code"`
  29. }