Showing
4 changed files
with
6 additions
and
4 deletions
@@ -29,7 +29,7 @@ public interface IZhiMaCertDao { | @@ -29,7 +29,7 @@ public interface IZhiMaCertDao { | ||
29 | //根据业务编号查询 | 29 | //根据业务编号查询 |
30 | ZhiMaCert selectByBizNo(@Param("bizNo")String bizNo); | 30 | ZhiMaCert selectByBizNo(@Param("bizNo")String bizNo); |
31 | 31 | ||
32 | - int deleteByUid(int uid); | 32 | + //int deleteByUid(int uid); |
33 | 33 | ||
34 | //根据业务编号查询 | 34 | //根据业务编号查询 |
35 | List<ZhiMaCert> selectTopCountValidStatusAndValidPhotoStatus(@Param("validStatus")int validStatus,@Param("validPhoto")int validPhoto,@Param("topCount")int topCount); | 35 | List<ZhiMaCert> selectTopCountValidStatusAndValidPhotoStatus(@Param("validStatus")int validStatus,@Param("validPhoto")int validPhoto,@Param("topCount")int topCount); |
@@ -90,11 +90,13 @@ | @@ -90,11 +90,13 @@ | ||
90 | where id = #{id} | 90 | where id = #{id} |
91 | </update> | 91 | </update> |
92 | 92 | ||
93 | + <!-- | ||
93 | <delete id="deleteByUid" parameterType="java.lang.Integer"> | 94 | <delete id="deleteByUid" parameterType="java.lang.Integer"> |
94 | update zhima_cert | 95 | update zhima_cert |
95 | set valid_status = 0 | 96 | set valid_status = 0 |
96 | where uid = #{uid} | 97 | where uid = #{uid} |
97 | </delete> | 98 | </delete> |
99 | + --> | ||
98 | 100 | ||
99 | <select id="selectTopCountValidStatusAndValidPhotoStatus" resultMap="BaseResultMap"> | 101 | <select id="selectTopCountValidStatusAndValidPhotoStatus" resultMap="BaseResultMap"> |
100 | select | 102 | select |
@@ -22,7 +22,7 @@ public interface IRealNameAuthorizeService { | @@ -22,7 +22,7 @@ public interface IRealNameAuthorizeService { | ||
22 | 22 | ||
23 | boolean isValidZhiMaCert(int uid); | 23 | boolean isValidZhiMaCert(int uid); |
24 | 24 | ||
25 | - int clearZhiMaCertInfo(Integer uid); | 25 | + //int clearZhiMaCertInfo(Integer uid); |
26 | 26 | ||
27 | ZhiMaCert getValidZhiMaCert(int uid); | 27 | ZhiMaCert getValidZhiMaCert(int uid); |
28 | 28 |
@@ -299,7 +299,7 @@ public class RealNameAuthorizeServiceImpl implements IRealNameAuthorizeService { | @@ -299,7 +299,7 @@ public class RealNameAuthorizeServiceImpl implements IRealNameAuthorizeService { | ||
299 | /** | 299 | /** |
300 | * 清芝麻认证的缓存信息 | 300 | * 清芝麻认证的缓存信息 |
301 | */ | 301 | */ |
302 | - @Override | 302 | + /*@Override |
303 | public int clearZhiMaCertInfo(Integer uid){ | 303 | public int clearZhiMaCertInfo(Integer uid){ |
304 | logger.info("RealNameAuthorizeServiceImpl clearCacheZhiMaCertInfo uid is {} ", uid); | 304 | logger.info("RealNameAuthorizeServiceImpl clearCacheZhiMaCertInfo uid is {} ", uid); |
305 | int result = 0; | 305 | int result = 0; |
@@ -310,7 +310,7 @@ public class RealNameAuthorizeServiceImpl implements IRealNameAuthorizeService { | @@ -310,7 +310,7 @@ public class RealNameAuthorizeServiceImpl implements IRealNameAuthorizeService { | ||
310 | cacheService.delZhiMaCert(uid); | 310 | cacheService.delZhiMaCert(uid); |
311 | } | 311 | } |
312 | return result; | 312 | return result; |
313 | - } | 313 | + }*/ |
314 | 314 | ||
315 | @Override | 315 | @Override |
316 | public ZhiMaCert getValidZhiMaCert(int uid) { | 316 | public ZhiMaCert getValidZhiMaCert(int uid) { |
-
Please register or login to post a comment