2021-07-12 14:51:34 +08:00
|
|
|
package com.xkrs.service.impl;
|
|
|
|
|
|
|
|
import com.xkrs.common.encapsulation.PromptMessageEnum;
|
2021-09-24 16:24:12 +08:00
|
|
|
import com.xkrs.dao.*;
|
2021-11-17 14:55:09 +08:00
|
|
|
import com.xkrs.model.entity.*;
|
2021-07-12 14:51:34 +08:00
|
|
|
import com.xkrs.model.qo.SysUserQo;
|
|
|
|
import com.xkrs.model.vo.SysUserVo;
|
2021-08-03 18:03:44 +08:00
|
|
|
import com.xkrs.service.RedisService;
|
2021-07-12 14:51:34 +08:00
|
|
|
import com.xkrs.service.SysUserService;
|
2021-07-14 16:06:34 +08:00
|
|
|
import com.xkrs.utils.DateTimeUtil;
|
2021-07-12 14:51:34 +08:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.springframework.context.i18n.LocaleContextHolder;
|
|
|
|
import org.springframework.security.crypto.keygen.KeyGenerators;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
2021-07-14 16:06:34 +08:00
|
|
|
import java.time.LocalDateTime;
|
2021-07-12 14:51:34 +08:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Locale;
|
2021-09-24 16:24:12 +08:00
|
|
|
import java.util.Map;
|
2021-07-12 14:51:34 +08:00
|
|
|
|
|
|
|
import static com.xkrs.common.encapsulation.OutputEncapsulation.outputEncapsulationObject;
|
2021-07-14 16:06:34 +08:00
|
|
|
import static com.xkrs.utils.DateTimeUtil.dateTimeToString;
|
2021-07-12 14:51:34 +08:00
|
|
|
import static com.xkrs.utils.DateTimeUtil.getNowTime;
|
|
|
|
import static com.xkrs.utils.EncryptDecryptUtil.encry256;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 系统用户服务实现
|
|
|
|
* @author tajochen
|
|
|
|
*/
|
|
|
|
@Service
|
|
|
|
public class SysUserServiceImpl implements SysUserService {
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
private SysUserDao sysUserDao;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
private SysRoleDao sysRoleDao;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
private RelUserRoleDao relUserRoleDao;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
private RelRoleAuthorityDao relRoleAuthorityDao;
|
|
|
|
|
2021-08-03 18:03:44 +08:00
|
|
|
@Resource
|
|
|
|
private RedisService redisService;
|
|
|
|
|
2021-09-24 16:24:12 +08:00
|
|
|
@Resource
|
|
|
|
private NationwideDao nationwideDao;
|
|
|
|
|
2021-11-17 14:55:09 +08:00
|
|
|
@Resource
|
|
|
|
private CountyDao countyDao;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
private CityDao cityDao;
|
|
|
|
|
2021-07-12 14:51:34 +08:00
|
|
|
/**
|
|
|
|
* 检查用户名是否存在
|
|
|
|
* @param userName
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean checkUserName(String userName) {
|
|
|
|
int num = sysUserDao.checkUserName(userName);
|
|
|
|
return (num == 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 新增用户
|
|
|
|
* @param sysUserQo
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
2021-08-03 18:03:44 +08:00
|
|
|
public String addUser(SysUserQo sysUserQo) {
|
|
|
|
// 获取区域信息
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
2021-07-12 14:51:34 +08:00
|
|
|
String salt = KeyGenerators.string().generateKey();
|
|
|
|
SysUserEntity sysUserEntity = new SysUserEntity();
|
|
|
|
sysUserEntity.setUserName(sysUserQo.getUserName());
|
2021-11-17 14:55:09 +08:00
|
|
|
String o = (String) redisService.get(sysUserQo.getUserName());
|
|
|
|
if("".equals(o) || o == null){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"请先发送验证码!",locale);
|
|
|
|
}
|
2021-08-03 18:03:44 +08:00
|
|
|
if(!redisService.get(sysUserQo.getUserName()).equals(sysUserQo.getVerificationCode())){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"验证码错误,请重新输入!",locale);
|
|
|
|
}
|
2021-11-17 14:55:09 +08:00
|
|
|
if("".equals(sysUserQo.getReallyName()) || sysUserQo.getReallyName() == null){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE,"真实姓名不能为空!",locale);
|
|
|
|
}
|
2021-07-12 14:51:34 +08:00
|
|
|
sysUserEntity.setReallyName(sysUserQo.getReallyName());
|
|
|
|
sysUserEntity.setSalt(salt);
|
|
|
|
sysUserEntity.setPassword(encry256(sysUserQo.getPassword() + salt));
|
|
|
|
sysUserEntity.setTelephone(sysUserQo.getUserName());
|
2021-11-17 14:55:09 +08:00
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
sysUserEntity.setCountyCode(sysUserQo.getCountyCode());
|
2021-11-17 14:55:09 +08:00
|
|
|
if("".equals(sysUserQo.getCountyName()) || sysUserQo.getCountyName() == null){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"省市区名称不能为空!",locale);
|
|
|
|
}
|
|
|
|
|
2021-08-06 11:36:13 +08:00
|
|
|
if("0000".equals(sysUserQo.getCountyCode().substring(2))){
|
2021-11-17 14:55:09 +08:00
|
|
|
List<CityEntity> byProCode = cityDao.findByProCode(sysUserQo.getCountyCode());
|
|
|
|
if(byProCode == null || byProCode.size() == 0){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"省编码不存在!",locale);
|
|
|
|
}
|
|
|
|
List<CityEntity> byProName = cityDao.findByProName(sysUserQo.getCountyName());
|
|
|
|
if(byProName == null || byProName.size() == 0){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"您所选择的区域不存在!",locale);
|
|
|
|
}
|
2021-08-06 11:36:13 +08:00
|
|
|
sysUserEntity.setActiveFlag(1);
|
|
|
|
sysUserEntity.setAccountType("省级");
|
|
|
|
}else if("00".equals(sysUserQo.getCountyCode().substring(4)) && !"0000".equals(sysUserQo.getCountyCode().substring(2))){
|
2021-12-01 14:13:05 +08:00
|
|
|
List<CountyEntity> byCityCode = countyDao.findByCityCode(sysUserQo.getCountyCode());
|
2021-11-17 14:55:09 +08:00
|
|
|
if(byCityCode == null || byCityCode.size() == 0){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"市编码不存在!",locale);
|
|
|
|
}
|
2021-12-01 14:13:05 +08:00
|
|
|
List<CountyEntity> byCityName = countyDao.findByCityName(sysUserQo.getCountyName());
|
2021-11-17 14:55:09 +08:00
|
|
|
if(byCityName == null || byCityName.size() == 0){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"您所选择的区域不存在!",locale);
|
|
|
|
}
|
2021-08-06 11:36:13 +08:00
|
|
|
sysUserEntity.setActiveFlag(1);
|
|
|
|
sysUserEntity.setAccountType("市级");
|
|
|
|
}else {
|
2021-11-17 14:55:09 +08:00
|
|
|
CountyEntity byCountyCode = countyDao.findByCountyCode(sysUserQo.getCountyCode());
|
|
|
|
if(byCountyCode == null){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"编码不存在!",locale);
|
|
|
|
}
|
|
|
|
CountyEntity byCountyName = countyDao.findByCountyName(sysUserQo.getCountyName());
|
|
|
|
if(byCountyName == null){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_WRONG,"您所选择的区域不存在!",locale);
|
|
|
|
}
|
2021-08-06 11:36:13 +08:00
|
|
|
sysUserEntity.setActiveFlag(0);
|
|
|
|
sysUserEntity.setAccountType("县级");
|
|
|
|
}
|
2021-07-12 14:51:34 +08:00
|
|
|
sysUserEntity.setStatusCode(0);
|
2021-07-14 16:06:34 +08:00
|
|
|
sysUserEntity.setAddTime(dateTimeToString(LocalDateTime.now()));
|
2021-07-12 14:51:34 +08:00
|
|
|
sysUserEntity.setDeleteFlag(0);
|
2021-07-14 09:23:53 +08:00
|
|
|
sysUserEntity.setDayNum(7);
|
2021-11-17 14:55:09 +08:00
|
|
|
String string = dateTimeToString(LocalDateTime.now().plusDays(3L));
|
2021-07-14 16:06:34 +08:00
|
|
|
sysUserEntity.setOverTime(string);
|
2021-08-10 09:06:16 +08:00
|
|
|
sysUserEntity.setLoginNum(0);
|
2021-08-10 08:41:17 +08:00
|
|
|
sysUserEntity.setCountyName(sysUserQo.getCountyName());
|
2021-07-12 14:51:34 +08:00
|
|
|
|
|
|
|
sysUserDao.save(sysUserEntity);
|
|
|
|
|
|
|
|
RelUserRoleEntity relUserRoleEntity = new RelUserRoleEntity();
|
|
|
|
relUserRoleEntity.setUserId(sysUserEntity.getId().longValue());
|
|
|
|
relUserRoleEntity.setRoleId(2);
|
|
|
|
|
|
|
|
RelRoleAuthorityEntity relRoleAuthorityEntity = new RelRoleAuthorityEntity();
|
|
|
|
relRoleAuthorityEntity.setRoleId(2);
|
|
|
|
relRoleAuthorityEntity.setAuthorityId(2);
|
|
|
|
relRoleAuthorityEntity.setUserId(sysUserEntity.getId());
|
|
|
|
relUserRoleDao.save(relUserRoleEntity);
|
|
|
|
|
|
|
|
relRoleAuthorityDao.save(relRoleAuthorityEntity);
|
2021-08-03 18:03:44 +08:00
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"注册成功!",locale);
|
2021-07-12 14:51:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询所有用户Vo
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
/*@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public Iterable<SysUserVo> getAllSysUser() {
|
|
|
|
Iterable<SysUserVo> ls = sysUserDao.selectAllSysUser();
|
|
|
|
return ls;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public SysUserEntity getSysUserByUserName(String userName) {
|
|
|
|
return sysUserDao.selectByUserName(userName);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public int updateSysUserLogin(String userName,String ipAddress) {
|
|
|
|
return sysUserDao.updateSysUserLogin(userName,ipAddress);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新用户
|
|
|
|
* @param sysUserQo
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public int updateSysUser(SysUserQo sysUserQo) {
|
|
|
|
SysUserEntity sysUserEntity = new SysUserEntity();
|
|
|
|
sysUserEntity.setReallyName(sysUserQo.getReallyName());
|
|
|
|
sysUserDao.save(sysUserEntity);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 软删除普通用户
|
|
|
|
* @param id
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public int softDeleteGeneralUser(Integer id) {
|
|
|
|
String adminRole = "role_administor";
|
|
|
|
String sysRole ="role_system_manager";
|
|
|
|
|
|
|
|
List<SysRoleEntity> list = sysRoleDao.selectByUserId(id);
|
|
|
|
if(list.size()>0){
|
|
|
|
SysRoleEntity sysRoleEntity = list.get(1);
|
|
|
|
if(sysRole.equals(sysRoleEntity.getRoleName())||adminRole.equals(sysRoleEntity.getRoleName())){
|
|
|
|
sysUserDao.softDeleteGeneralUserById(id);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询用户的信息
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public List<SysUserVo> selectAllUser() {
|
|
|
|
return sysUserDao.selectAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 启用
|
|
|
|
* @param userId
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public void updateEnable(Integer userId) {
|
|
|
|
sysUserDao.updateEnable(userId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 禁用
|
|
|
|
* @param userId
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public void updateDisable(Integer userId) {
|
|
|
|
sysUserDao.updateDisable(userId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 用户修改密码
|
|
|
|
* @param oldPassword
|
|
|
|
* @param newPassword
|
|
|
|
* @param confirmPassword
|
|
|
|
* @param sysUserEntity
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public String updatePassword(String oldPassword, String newPassword, String confirmPassword, SysUserEntity sysUserEntity) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
String oldFrontPassword = encry256(oldPassword + sysUserEntity.getSalt());
|
|
|
|
if(!oldFrontPassword.equals(sysUserEntity.getPassword())){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.PROCESS_FAIL,"旧密码输入错误",locale);
|
|
|
|
}
|
|
|
|
if(!newPassword.equals(confirmPassword)){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.PROCESS_FAIL,"两次密码输入不一致",locale);
|
|
|
|
}
|
|
|
|
String newAfterPassword = encry256(newPassword + sysUserEntity.getSalt());
|
|
|
|
sysUserDao.updatePassword(sysUserEntity.getId(),newAfterPassword);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"密码修改成功",locale);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 管理员修改用户的密码
|
|
|
|
* @param userId
|
|
|
|
* @param newPassword
|
|
|
|
* @param confirmPassword
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public String adminUpdatePassword(Integer userId, String newPassword, String confirmPassword) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
if(!newPassword.equals(confirmPassword)){
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.PROCESS_FAIL,"两次密码输入不一致",locale);
|
|
|
|
}
|
|
|
|
SysUserEntity sysUserEntity = sysUserDao.selectByUserId(userId);
|
|
|
|
String newAfterPassword = encry256(newPassword + sysUserEntity.getSalt());
|
|
|
|
sysUserDao.updatePassword(userId,newAfterPassword);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"密码修改成功",locale);
|
|
|
|
}
|
|
|
|
|
2021-07-15 14:31:07 +08:00
|
|
|
@Override
|
|
|
|
public SysUserVo getUserByUserName(String userName) {
|
|
|
|
return sysUserDao.selectUserByUserName(userName);
|
|
|
|
}
|
|
|
|
|
2021-08-04 16:17:58 +08:00
|
|
|
/**
|
|
|
|
* 按天数修改账号到期时间
|
|
|
|
* @param userId
|
|
|
|
* @param dayNum
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public String updateExpireDateDay(Integer userId, Integer dayNum) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
long l = dayNum.longValue();
|
|
|
|
LocalDateTime now = LocalDateTime.now();
|
|
|
|
SysUserEntity sysUserEntity = sysUserDao.selectByUserId(userId);
|
|
|
|
if(DateTimeUtil.dateTimeToString(now).compareTo(sysUserEntity.getOverTime()) > 0){
|
|
|
|
LocalDateTime localDateTime = now.plusDays(l);
|
|
|
|
String time = dateTimeToString(localDateTime);
|
|
|
|
sysUserDao.updateOverTime(userId,time);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}else {
|
|
|
|
LocalDateTime localDateTime = DateTimeUtil.stringToDateTime(sysUserEntity.getOverTime());
|
|
|
|
LocalDateTime localDateTime1 = localDateTime.plusDays(l);
|
|
|
|
String time = dateTimeToString(localDateTime1);
|
|
|
|
sysUserDao.updateOverTime(userId,time);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 按月份修改账号过期时间
|
|
|
|
* @param userId
|
|
|
|
* @param dayNum
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public String updateExpireDateMonth(Integer userId, Integer dayNum) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
long l = dayNum.longValue();
|
|
|
|
LocalDateTime now = LocalDateTime.now();
|
|
|
|
SysUserEntity sysUserEntity = sysUserDao.selectByUserId(userId);
|
|
|
|
if(DateTimeUtil.dateTimeToString(now).compareTo(sysUserEntity.getOverTime()) > 0){
|
|
|
|
LocalDateTime localDateTime = now.plusMonths(l);
|
|
|
|
String time = dateTimeToString(localDateTime);
|
|
|
|
sysUserDao.updateOverTime(userId,time);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}else {
|
|
|
|
LocalDateTime localDateTime = DateTimeUtil.stringToDateTime(sysUserEntity.getOverTime());
|
|
|
|
LocalDateTime localDateTime1 = localDateTime.plusMonths(l);
|
|
|
|
String time = dateTimeToString(localDateTime1);
|
|
|
|
sysUserDao.updateOverTime(userId,time);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 按年份修改账号到期时间
|
|
|
|
* @param userId
|
|
|
|
* @param dayNum
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public String updateExpireDateYear(Integer userId, Integer dayNum) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
long l = dayNum.longValue();
|
|
|
|
LocalDateTime now = LocalDateTime.now();
|
|
|
|
SysUserEntity sysUserEntity = sysUserDao.selectByUserId(userId);
|
|
|
|
if(DateTimeUtil.dateTimeToString(now).compareTo(sysUserEntity.getOverTime()) > 0){
|
|
|
|
LocalDateTime localDateTime = now.plusYears(l);
|
|
|
|
String time = dateTimeToString(localDateTime);
|
|
|
|
sysUserDao.updateOverTime(userId,time);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}else {
|
|
|
|
LocalDateTime localDateTime = DateTimeUtil.stringToDateTime(sysUserEntity.getOverTime());
|
|
|
|
LocalDateTime localDateTime1 = localDateTime.plusYears(l);
|
|
|
|
String time = dateTimeToString(localDateTime1);
|
|
|
|
sysUserDao.updateOverTime(userId,time);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设置账号永久有效
|
|
|
|
* @param userId
|
|
|
|
* @return
|
|
|
|
*/
|
2021-08-06 16:32:57 +08:00
|
|
|
@Transactional(rollbackFor=Exception.class)
|
2021-08-04 16:17:58 +08:00
|
|
|
@Override
|
|
|
|
public String updatePermanent(Integer userId) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
sysUserDao.updateDayNum(userId);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}
|
|
|
|
|
2021-08-06 16:32:57 +08:00
|
|
|
/**
|
|
|
|
* 修改账号到期时间
|
|
|
|
* @param userId
|
|
|
|
* @param overTime
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public String updateOverTime(Integer userId, String overTime) {
|
|
|
|
Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
sysUserDao.updateOverTime(userId,overTime);
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS,"修改成功",locale);
|
|
|
|
}
|
|
|
|
|
2021-08-10 09:06:16 +08:00
|
|
|
/**
|
|
|
|
* 记录用户登录次数
|
|
|
|
* @param userId
|
|
|
|
* @param loginNum
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public void updateLoginNum(Integer userId, Integer loginNum) {
|
|
|
|
sysUserDao.updateLoginNum(userId,loginNum);
|
|
|
|
}
|
|
|
|
|
2021-11-17 14:55:09 +08:00
|
|
|
/**
|
|
|
|
* 记录用户登录时间
|
|
|
|
* @param userId
|
|
|
|
* @param loginLastTime
|
|
|
|
*/
|
|
|
|
@Transactional(rollbackFor=Exception.class)
|
|
|
|
@Override
|
|
|
|
public void updateLoginLastTime(Integer userId, String loginLastTime) {
|
|
|
|
sysUserDao.updateLoginLastTime(userId,loginLastTime);
|
|
|
|
}
|
|
|
|
|
2021-09-24 16:24:12 +08:00
|
|
|
@Override
|
|
|
|
public List<Map<String, String>> findCityByProCode(String proCode) {
|
|
|
|
return nationwideDao.findCityByProCode(proCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<Map<String, String>> findCountyByProCode(String proCode) {
|
|
|
|
return nationwideDao.findCountyByProCode(proCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<Map<String, String>> findCountyByCityCode(String cityCode) {
|
|
|
|
return nationwideDao.findCountyByCityCode(cityCode);
|
|
|
|
}
|
|
|
|
|
2021-07-12 14:51:34 +08:00
|
|
|
}
|