Commit 65bed963 authored by 李健华's avatar 李健华

只查询企业微信数据

parent 9a7b22d2
...@@ -19,6 +19,6 @@ public interface IWeChatInfoRelationRepository extends JpaRepository<WechatInfoR ...@@ -19,6 +19,6 @@ public interface IWeChatInfoRelationRepository extends JpaRepository<WechatInfoR
@Query(value = "update wechat_info_relation as wir set wir.is_follow_wechat = 1 where wir.open_id IN (?1)", nativeQuery = true) @Query(value = "update wechat_info_relation as wir set wir.is_follow_wechat = 1 where wir.open_id IN (?1)", nativeQuery = true)
void updateIsFollowWechatInOpenIdList(List<String> openIdList); void updateIsFollowWechatInOpenIdList(List<String> openIdList);
List<WechatInfoRelation> findByUnionIdInAndTaskPeriod(List<String> unionIdList, String period); List<WechatInfoRelation> findByUnionIdInAndTaskPeriodAndType(List<String> unionIdList, String period, Integer type);
} }
...@@ -183,7 +183,7 @@ public class WechatFollowServiceImpl implements IWechatFollowService { ...@@ -183,7 +183,7 @@ public class WechatFollowServiceImpl implements IWechatFollowService {
@Override @Override
public Object findByUnionIdsToUserIds(List<String> unionIds, String period) { public Object findByUnionIdsToUserIds(List<String> unionIds, String period) {
return weChatInfoRelationRepository.findByUnionIdInAndTaskPeriod(unionIds, period); return weChatInfoRelationRepository.findByUnionIdInAndTaskPeriodAndType(unionIds, period, ENTERPRISE_WECHAT);
} }
private JsonResult executeEnterpriseFollowStatus(String s, String period) { private JsonResult executeEnterpriseFollowStatus(String s, String period) {
......
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