Commit 97af0cde by 徐高华

区间

parent 80e5a7f9
......@@ -2,6 +2,8 @@ package com.gic.haoban.manage.service.dao.mapper.hm;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.gic.haoban.manage.api.dto.qdto.hm.WxUserAddLogSearchQDTO;
import com.gic.haoban.manage.service.entity.hm.TabWxUserAddLog;
......@@ -45,7 +47,7 @@ public interface WxUserAddLogMapper {
* @return
* @throws
*/
public TabWxUserAddLog selectNewLog(String externalUserid, String wxUserId);
public TabWxUserAddLog selectNewLog(@Param("externalUserid")String externalUserid, @Param("wxUserId")String wxUserId);
/**
......
......@@ -63,6 +63,7 @@ public class WxUserAddLogServiceImpl implements WxUserAddLogService {
entity.setWxUserId(qdto.getWxUserId());
entity.setStaffId(qdto.getStaffId());
entity.setStaffName(qdto.getStaffName());
entity.setAllDelFlag(0);
if (qdto.isDelFlag()) {
TabWxUserAddLog log = this.wxUserAddLogMapper.selectNewLog(externalUserid, wxUserId);
entity = log;
......
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