获取京东门店等级

This commit is contained in:
苏尹岚
2019-12-13 16:38:18 +08:00
parent 44653932ae
commit 334c012818
6 changed files with 37 additions and 5 deletions

View File

@@ -621,3 +621,16 @@ func (c *StoreController) CreateStorePriceScore() {
return retVal, "", err
})
}
// @Title 测试jdlevel
// @Description 测试jdlevel
// @Param token header string true "认证token"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /SaveAndSendAlarmVendorSnapshot [post]
func (c *StoreController) SaveAndSendAlarmVendorSnapshot() {
c.callSaveAndSendAlarmVendorSnapshot(func(params *tStoreSaveAndSendAlarmVendorSnapshotParams) (retVal interface{}, errCode string, err error) {
err = cms.SaveAndSendAlarmVendorSnapshot(params.Ctx, nil, nil, true)
return retVal, "", err
})
}