|
@@ -5,6 +5,7 @@ import java.util.List;
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.system.domain.TServiceManage;
|
|
import com.ruoyi.system.domain.TServiceManage;
|
|
|
|
+import com.ruoyi.system.domain.dto.AddUserDto;
|
|
import com.ruoyi.system.domain.dto.TUserProfileDto;
|
|
import com.ruoyi.system.domain.dto.TUserProfileDto;
|
|
import com.ruoyi.system.domain.dto.UserAgeDto;
|
|
import com.ruoyi.system.domain.dto.UserAgeDto;
|
|
import com.ruoyi.system.mapper.TEmergentPeopleMapper;
|
|
import com.ruoyi.system.mapper.TEmergentPeopleMapper;
|
|
@@ -186,6 +187,11 @@ public class TUserProfileServiceImpl implements ITUserProfileService
|
|
return tUserProfileMapper.selectuserAgeCount();
|
|
return tUserProfileMapper.selectuserAgeCount();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public List<AddUserDto> selectAddUser() {
|
|
|
|
+ return tUserProfileMapper.selectAddUser();
|
|
|
|
+ }
|
|
|
|
+
|
|
public boolean checkManageData(TUserProfile tUserProfile){
|
|
public boolean checkManageData(TUserProfile tUserProfile){
|
|
return StringUtils.isNotNull(tUserProfile.getName()) && StringUtils.isNotNull(tUserProfile.getGender()) &&
|
|
return StringUtils.isNotNull(tUserProfile.getName()) && StringUtils.isNotNull(tUserProfile.getGender()) &&
|
|
StringUtils.isNotNull(tUserProfile.getSfzid()) && StringUtils.isNotNull(tUserProfile.getTelOne()) &&
|
|
StringUtils.isNotNull(tUserProfile.getSfzid()) && StringUtils.isNotNull(tUserProfile.getTelOne()) &&
|