12345678910111213141516171819202122232425262728293031 |
- package entity
- /**
- * @Author: qz
- * @Date: 2022/6/23 18:58
- * @Description:
- */
- type JDLParams struct {
- SenderProvince string `json:"sender_province"`
- SenderCity string `json:"sender_city"`
- SenderDistrict string `json:"sender_district"`
- SenderDetailAddress string `json:"sender_detailAddress"`
- SenderName string `json:"sender_name"`
- SenderMobile string `json:"sender_mobile"`
- ReceiverProvince string `json:"receiver_province"`
- ReceiverCity string `json:"receiver_city"`
- ReceiverDistrict string `json:"receiver_district"`
- ReceiverDetailAddress string `json:"receiver_detailAddress"`
- ReceiverName string `json:"receiver_name"`
- ReceiverMobile string `json:"receiver_mobile"`
- XnCode string `json:"order_id"`
- SendStart string `json:"send_start"`
- SendEnd string `json:"send_end"`
- Remark string `json:"remark"`
- CustomerCode string `json:"customer_code"`
- }
- type JDLCheck struct {
- PickUpCode string `json:"pick_up_code"`
- CustomerCode string `json:"customer_code"`
- }
|