Commit c1bb41e7 by qwmqiuwenmin

fix

parent d5782b8a
......@@ -315,7 +315,9 @@ public class MessageApiServiceImpl implements MessageApiService {
departmentIds = departmentIds.substring(0,departmentIds.length() - 1);
}
}
staffApiService.staffEdit(EntityUtil.changeEntityByJSON(StaffDTO.class, staff), departmentIds);
StaffDTO staffUpdate = EntityUtil.changeEntityByJSON(StaffDTO.class, staff);
staffUpdate.setWeixinPush(true);
staffApiService.staffEdit(staffUpdate, departmentIds);
}
// String add = this.staffService.add(staff);
// log.info("新增用户返回结果:{}", add);
......
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