This commit is contained in:
邹宗楠
2025-05-06 15:52:04 +08:00
parent 90111dd57e
commit 3e3f909cff
5 changed files with 55 additions and 8 deletions

View File

@@ -85,6 +85,20 @@ func (c *JxOrderController) TerminalRegister() {
})
}
// @Title 查询门店扫码枪设备状态
// @Description 查询门店扫码枪设备状态
// @Param token header string true "认证token"
// @Param storeId formData int true "京西门店ID"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /TerminalQuery [post]
func (c *JxOrderController) TerminalQuery() {
c.callTerminalQuery(func(params *tJxorderTerminalQueryParams) (retVal interface{}, errCode string, err error) {
retVal, err = localjx.QueryStoreTerm(params.StoreId)
return retVal, errCode, err
})
}
// @Title 到店扫码支付订单退款
// @Description 到店扫码支付订单退款
// @Param token header string true "认证token"