1234567891011121314151617 |
- package server
- import "xiaoniaokuaiyan.com/xiaoniao/entity"
- /**
- * @Author: qz
- * @Date: 2022/6/23 18:16
- * @Description:
- */
- type JDLService interface {
- Calendar(*entity.JDLParams) (interface{}, error)
- PuckUpOrder(*entity.JDLParams) (string, error)
- PuckUpOrderV2(*entity.JDLParams) (string, error)
- Cancel(pickUpCode, customerCode string) (string, error)
- CancelV2(pickUpCode, customerCode string) (string, error)
- GetTraceInfo(pickUpCode, customerCode string) (interface{}, error)
- }
|