|
@@ -1,13 +1,5 @@
|
|
|
package com.keao.edu.auth.service.impl;
|
|
|
|
|
|
-import java.util.Date;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.beans.factory.annotation.Value;
|
|
|
-import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.transaction.annotation.Transactional;
|
|
|
-
|
|
|
import com.keao.edu.auth.api.dto.SysUserInfo;
|
|
|
import com.keao.edu.auth.api.entity.SysUser;
|
|
|
import com.keao.edu.auth.dal.dao.SysUserDao;
|
|
@@ -16,29 +8,29 @@ import com.keao.edu.auth.service.SysUserRoleService;
|
|
|
import com.keao.edu.auth.service.SysUserService;
|
|
|
import com.keao.edu.common.dal.BaseDAO;
|
|
|
import com.keao.edu.common.exception.BizException;
|
|
|
-import com.keao.edu.common.service.IdGeneratorService;
|
|
|
import com.keao.edu.common.service.impl.BaseServiceImpl;
|
|
|
import com.keao.edu.im.api.client.ImFeignService;
|
|
|
import com.keao.edu.im.api.entity.ImResult;
|
|
|
import com.keao.edu.im.api.entity.ImUserModel;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
@Service
|
|
|
public class SysUserServiceImpl extends BaseServiceImpl<Integer, SysUser> implements SysUserService {
|
|
|
|
|
|
@Autowired
|
|
|
private SysUserDao sysUserDao;
|
|
|
-
|
|
|
@Autowired
|
|
|
private SysUserRoleService sysUserRoleService;
|
|
|
-
|
|
|
@Autowired
|
|
|
private SysRoleMenuService sysRoleMenuService;
|
|
|
@Autowired
|
|
|
private ImFeignService imFeignService;
|
|
|
- @Autowired
|
|
|
- private SysUserService sysUserService;
|
|
|
- @Autowired
|
|
|
- private IdGeneratorService smsCodeService;
|
|
|
|
|
|
@Value("${message.autoRegister}")
|
|
|
private boolean autoRegister;
|