Commit 1dfc9e8a by lixue123

970相关接口

parent 58799c03
/** /**
* *
*/ */
package com.pcloud.book.consumer.channel; package com.pcloud.book.consumer.channel;
...@@ -136,7 +136,7 @@ public class QrcodeSceneConsr { ...@@ -136,7 +136,7 @@ public class QrcodeSceneConsr {
* 默认生成二维码以及对应数据 * 默认生成二维码以及对应数据
*/ */
public Long createDefualtByTemplet(Long templetId, Long channelId, Long adviserId, Long agentId, Long bookId, public Long createDefualtByTemplet(Long templetId, Long channelId, Long adviserId, Long agentId, Long bookId,
Long sceneId) throws BizException { Long sceneId) throws BizException {
LOGGER.info("【二维码-渠道(消)】默认生成二维码以及对应数据,<START>.[templetId]=" + templetId + ",[channelId]=" + channelId LOGGER.info("【二维码-渠道(消)】默认生成二维码以及对应数据,<START>.[templetId]=" + templetId + ",[channelId]=" + channelId
+ ",[adviserId]=" + adviserId + ",[agentId]=" + agentId + ",[bookId]=" + bookId + ",[sceneId]=" + ",[adviserId]=" + adviserId + ",[agentId]=" + agentId + ",[bookId]=" + bookId + ",[sceneId]="
+ sceneId); + sceneId);
...@@ -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