Commit 39bb6ca7 by 墨竹

fix:企微同步通讯录处理部门bug

parent 2c82e1e6
...@@ -45,27 +45,6 @@ public interface DepartmentApiService { ...@@ -45,27 +45,6 @@ public interface DepartmentApiService {
*/ */
DepartmentDTO selectById(String departmentId); DepartmentDTO selectById(String departmentId);
/** /**
* 新增部门
* @param department
* @return
*/
@Deprecated
ServiceResponse<DepartmentDTO> add(DepartmentDTO department);
/**
* 修改部门
* @param department
* @return
*/
@Deprecated
ServiceResponse edit(DepartmentDTO department);
/**
* 删除部门
* @param departmentId
* @return
*/
@Deprecated
ServiceResponse del(String departmentId);
/**
* 根据关联id 获取部门 * 根据关联id 获取部门
* @param departId * @param departId
* @return * @return
......
...@@ -13,7 +13,6 @@ import com.gic.haoban.manage.service.dao.mapper.TabHaobanWelcomeSuitRangMapper; ...@@ -13,7 +13,6 @@ import com.gic.haoban.manage.service.dao.mapper.TabHaobanWelcomeSuitRangMapper;
import com.gic.haoban.manage.service.entity.TabHaobanDepartment; import com.gic.haoban.manage.service.entity.TabHaobanDepartment;
import com.gic.haoban.manage.service.entity.TabHaobanWelcomeSuitRang; import com.gic.haoban.manage.service.entity.TabHaobanWelcomeSuitRang;
import com.gic.haoban.manage.service.service.DepartmentService; import com.gic.haoban.manage.service.service.DepartmentService;
import com.gic.haoban.manage.service.task.QywxDeptSyncOperation;
import com.github.pagehelper.Page; import com.github.pagehelper.Page;
import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
......
...@@ -115,7 +115,7 @@ public class MessageApiServiceImpl implements MessageApiService { ...@@ -115,7 +115,7 @@ public class MessageApiServiceImpl implements MessageApiService {
@Override @Override
public void dealWxMessage(String param) { public void dealWxMessage(String param) {
QywxCallBackDTO dto = JSON.parseObject(param, QywxCallBackDTO.class); QywxCallBackDTO dto = JSON.parseObject(param, QywxCallBackDTO.class);
log.info("【成员同步回调处理】dto={}", JSON.toJSONString(param)); log.info("【成员部门同步回调处理】dto={}", JSON.toJSONString(param));
//处理成员 //处理成员
dealQywxUser(dto); dealQywxUser(dto);
//处理部门 //处理部门
......
...@@ -33,6 +33,7 @@ import java.util.Set; ...@@ -33,6 +33,7 @@ import java.util.Set;
import java.util.stream.Collectors; import java.util.stream.Collectors;
/** /**
* 同步通讯录部门
* Created 2020/4/13. * Created 2020/4/13.
* *
* @author hua * @author hua
......
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