|
@ -2,6 +2,8 @@ package com.elink.esua.epdc.service.impl; |
|
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
import com.elink.esua.epdc.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
import com.elink.esua.epdc.commons.tools.utils.ConvertUtils; |
|
|
import com.elink.esua.epdc.commons.tools.utils.ConvertUtils; |
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.validator.AssertUtils; |
|
|
import com.elink.esua.epdc.dao.UserInfoDao; |
|
|
import com.elink.esua.epdc.dao.UserInfoDao; |
|
|
import com.elink.esua.epdc.dto.epdc.form.EpdcAppShowIdentityFormDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.form.EpdcAppShowIdentityFormDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcAppIdentityDetailResultDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcAppIdentityDetailResultDTO; |
|
@ -31,4 +33,18 @@ public class UserInfoServiceImpl extends BaseServiceImpl<UserInfoDao, UserInfoEn |
|
|
EpdcAppIdentityDetailResultDTO dentityDetail = baseDao.selectDentityDetail(userId); |
|
|
EpdcAppIdentityDetailResultDTO dentityDetail = baseDao.selectDentityDetail(userId); |
|
|
return dentityDetail; |
|
|
return dentityDetail; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public Result recommended(String id) { |
|
|
|
|
|
AssertUtils.isBlank(id,"id"); |
|
|
|
|
|
baseDao.recommended(id); |
|
|
|
|
|
return new Result(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public Result recommendedCancel(String id) { |
|
|
|
|
|
AssertUtils.isBlank(id,"id"); |
|
|
|
|
|
baseDao.recommendedCancel(id); |
|
|
|
|
|
return new Result(); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|