21 lines
484 B
Go
21 lines
484 B
Go
|
package jtexpress
|
||
|
|
||
|
const (
|
||
|
apiHostProd = ""
|
||
|
apiHostDev = "https://test.jtexpress.vn"
|
||
|
|
||
|
apiPathEstimateFee = "/yuenan-interface-web/jtpos/inquiry!freight.action"
|
||
|
apiPathCreateOrder = "/yuenan-interface-web/order/orderAction!createOrder.action"
|
||
|
apiPathCancelOrder = "/yuenan-interface-web/order/orderAction!createOrder.action"
|
||
|
apiPathTrackingOrder = ""
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
statusSuccess = "true"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
msgTypeEstimateFee = "FREIGHTQUERY"
|
||
|
msgTypeCreateOrder = "ORDERCREATE"
|
||
|
)
|