Commit 26a3b9e5 by 朱亚洁

feat:[none]合并代码报错

parent 46960aea
...@@ -117,9 +117,9 @@ public class AppletNewsPoolBizImpl implements AppletNewsPoolBiz { ...@@ -117,9 +117,9 @@ public class AppletNewsPoolBizImpl implements AppletNewsPoolBiz {
} }
private void addResource(String source) { private void addResource(String source) {
Boolean exist = appletNewsDao.newsSourceExist(source); Boolean exist = appletNewsDao.newsSourceExist(source,0L);
if (!exist) { if (!exist) {
appletNewsDao.insertSource(source); appletNewsDao.insertSource(source,0L);
} }
return; return;
} }
......
...@@ -171,9 +171,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz { ...@@ -171,9 +171,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz {
@Override @Override
public void updateThirdResources(AppletThirdResourcesDTO thirdResourcesDTO) { public void updateThirdResources(AppletThirdResourcesDTO thirdResourcesDTO) {
AppletThirdResources thirdResources = new AppletThirdResources(); AppletThirdResources thirdResources = new AppletThirdResources();
Boolean exist = appletNewsDao.newsSourceExist(thirdResourcesDTO.getSource()); Boolean exist = appletNewsDao.newsSourceExist(thirdResourcesDTO.getSource(),0L);
if (!exist) { if (!exist) {
appletNewsDao.insertSource(thirdResourcesDTO.getSource()); appletNewsDao.insertSource(thirdResourcesDTO.getSource(),0L);
} }
if (!StringUtil.isEmpty(thirdResourcesDTO.getNumber())) { if (!StringUtil.isEmpty(thirdResourcesDTO.getNumber())) {
...@@ -198,9 +198,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz { ...@@ -198,9 +198,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz {
public void createThirdResources(AppletThirdResourcesDTO thirdResourcesDTO) { public void createThirdResources(AppletThirdResourcesDTO thirdResourcesDTO) {
AppletThirdResources thirdResources = new AppletThirdResources(); AppletThirdResources thirdResources = new AppletThirdResources();
Boolean exist = appletNewsDao.newsSourceExist(thirdResourcesDTO.getSource()); Boolean exist = appletNewsDao.newsSourceExist(thirdResourcesDTO.getSource(),0L);
if (!exist) { if (!exist) {
appletNewsDao.insertSource(thirdResourcesDTO.getSource()); appletNewsDao.insertSource(thirdResourcesDTO.getSource(),0L);
} }
if (!StringUtil.isEmpty(thirdResourcesDTO.getNumber())) { if (!StringUtil.isEmpty(thirdResourcesDTO.getNumber())) {
......
...@@ -947,7 +947,6 @@ public interface BookGroupBiz { ...@@ -947,7 +947,6 @@ public interface BookGroupBiz {
* * @param null * * @param null
*/ */
public Long getAccountSettingByAdviser(Long adviserId); public Long getAccountSettingByAdviser(Long adviserId);
String getGroupNewsMaterialById(Long bookGroupQrcodeId, Long classifyId);
/** /**
* 出版社社群书数量 * 出版社社群书数量
......
...@@ -251,12 +251,11 @@ public interface GroupQrcodeBiz { ...@@ -251,12 +251,11 @@ public interface GroupQrcodeBiz {
* @param currentPage * @param currentPage
* @return * @return
*/ */
PageBeanNew<AppletGroupManageDTO> getLocalGroup(Long wechatUserId, Integer numPerPage, Integer currentPage); PageBeanNew<AppletGroupManageDTO> getLocalGroup(Long wechatUserId, Integer numPerPage, Integer currentPage, Long officialAccountsId);
Integer updateGroupMaterial(List<String> groups); Integer updateGroupMaterial(List<String> groups);
List<String> migrateMaterial(MaterialMigrateDTO migrateDTO); List<String> migrateMaterial(MaterialMigrateDTO migrateDTO);
void syncGroupMaterial(Map<String, Long> accountMap); void syncGroupMaterial(Map<String, Long> accountMap);
PageBeanNew<AppletGroupManageDTO> getLocalGroup(Long wechatUserId, Integer numPerPage, Integer currentPage, Long officialAccountsId);
} }
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