Commit 1dfc9e8a by lixue123

970相关接口

parent 58799c03
...@@ -289,4 +289,16 @@ public class QrcodeSceneConsr { ...@@ -289,4 +289,16 @@ public class QrcodeSceneConsr {
return count; return count;
} }
@ParamLog(description = "批量获取图书关联二维码个数")
public Map<String,Long> getBookQRCountByMap(List<BookAssocQRcountRequestVO> bookAssocQRcountRequestVOS,String monthDate)throws BizException{
Map<String,Long> countMap = null;
try {
countMap = ResponseHandleUtil.parseMapResponse(qrcodeSceneService.bookAssosQrcountList(bookAssocQRcountRequestVOS,monthDate),String.class,Long.class);
} catch (BizException e) {
LOGGER.error("【二维码-渠道(消)】 批量获取图书关联二维码个数[qrcodeSceneService.bookAssosQrcountList],<ERROR>.[create]:" + e.getMessage(),
e);
}
return countMap;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment