This commit is contained in:
邹宗楠
2022-04-02 15:58:23 +08:00
parent 7c62fdd8e1
commit d8e408e13d
2 changed files with 8 additions and 11 deletions

View File

@@ -8,6 +8,7 @@ import (
"git.rosy.net.cn/jx-callback/business/model"
"git.rosy.net.cn/jx-callback/business/model/dao"
"git.rosy.net.cn/jx-callback/business/partner"
"git.rosy.net.cn/jx-callback/globals"
"git.rosy.net.cn/jx-callback/globals/api"
)
@@ -169,15 +170,11 @@ func (c *DeliveryHandler) OnStoreStatus(msg *fnpsapi.ChainstoreStatusNotify) (re
getAuditStatus(status),
utils.Interface2String(msg.Param.Remark),
)
if err != nil {
globals.SugarLogger.Debugf("FNPS OnStoreStatus callback fail :[%s]", err)
}
retVal = fnpsapi.Err2CallbackResponse(err, "fn ps OnStoreStatus")
return retVal
}
type ChainstoreParam struct {
MerchantId string `json:"merchant_id"` // 商户id
ChainStoreId string `json:"chain_store_id"` // 蜂鸟门店id
OutShopCode string `json:"out_shop_code"` // 外部门店编码
Status string `json:"status"` // 门店认证状态
ModifyStatus string `json:"modify_status"` // 门店修改状态
Remark string `json:"remark "` // 门店认证、修改等驳回时返回原因
}