- 重新命名一些饿百的常量名

This commit is contained in:
gazebo
2019-04-18 17:38:25 +08:00
parent 46591cd544
commit ad69492cea
5 changed files with 47 additions and 18 deletions

View File

@@ -10,6 +10,18 @@ import (
"git.rosy.net.cn/baseapi/utils"
)
const (
CmdOrderCreate = "order.create"
CmdOrderDeliveryStatus = "order.deliveryStatus.push"
CmdOrderPartRefund = "order.partrefund.push" // 售前只能是商户发起 售后是用户, 你看是由谁发起的就可以知道,来自惠焕
CmdOrderStatus = "order.status.push"
CmdOrderUserCancel = "order.user.cancel"
CmdShopMsgPush = "shop.msg.push"
CmdShopBindMsg = "shop.bind.msg"
CmdShopUnbindMsg = "shop.unbind.msg"
)
type CallbackResponse struct {
Cmd string `json:"cmd"`
Sign string `json:"sign"`