Commit 7a381169 by songyinghui

feat: 数据修复

parent 79e42af9
......@@ -326,10 +326,12 @@
</update>
<select id="queryInteractRecordWithMemberIdINull" resultMap="TabHaobanInteractRecordMap">
select <include refid="baseSql"/>
select enterprise_id, union_id
from tab_haoban_interact_record
where
member_id is null or member_id = ''
member_id is null or member_id = ''
GROUP BY enterprise_id, union_id
ORDER BY null
</select>
</mapper>
......
......@@ -124,7 +124,7 @@ public class InteractRecordTest {
if (CollectionUtils.isEmpty(interactRecords)) {
return;
}
log.info("本次需要处理 {}个unionId", interactRecords.size());
for (TabHaobanInteractRecord interactRecord : interactRecords) {
String unionId = interactRecord.getUnionId();
QueryMemberInfoDTO queryMemberInfoDTO = QueryMemberInfoDTO
......
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