|
|
|
@@ -1,13 +1,10 @@ |
|
|
|
package com.iformall.service.impl; |
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.github.pagehelper.PageHelper; |
|
|
|
import com.github.pagehelper.PageInfo; |
|
|
|
import com.iformall.domain.dto.MarkingCouponDataReportDto; |
|
|
|
import com.iformall.domain.po.WxUserVisit; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import com.iformall.domain.vo.TouchUsersReportVo; |
|
|
|
import com.iformall.mapper.WxUserVisitMapper; |
|
|
|
import com.iformall.service.WxMallService; |
|
|
|
@@ -47,7 +44,6 @@ public class WxUserVisitServiceImpl implements WxUserVisitService { |
|
|
|
@Override |
|
|
|
public void saveOrUpdate(WxUserVisit record) { |
|
|
|
if (record.getId() == null) { |
|
|
|
//record.setId(UUID.randomUUID().toString().replaceAll("-", "")); |
|
|
|
final IdWorker idWorker = IdWorker.get(); |
|
|
|
record.setId(idWorker.nextId()); |
|
|
|
wxUserVisitMapper.insert(record); |
|
|
|
|