Commit de291c39 by chongli

Merge branch 'f-6.7.0' of 192.168.10.6:caosy/fun-golf-service into f-6.7.0

parents 2222b1b4 b8e42609
...@@ -93,7 +93,7 @@ public class SignLogService extends GenericService<SignLogDao, SignLog, Integer, ...@@ -93,7 +93,7 @@ public class SignLogService extends GenericService<SignLogDao, SignLog, Integer,
} }
} }
// 4、保存到DB // 4、保存到DB
UserExt userExt = userExtDao.getUserExt(requestBean.getUid()); UserExt userExt = userExtDao.getUserExtInfoByUid(requestBean.getUid());
SignLog signLog = new SignLog(); SignLog signLog = new SignLog();
signLog.setUid(requestBean.getUid()); signLog.setUid(requestBean.getUid());
if (isContinuity) { if (isContinuity) {
......
...@@ -117,7 +117,7 @@ public class CommuneExtService extends GenericService<CommuneExtDao, CommuneExt, ...@@ -117,7 +117,7 @@ public class CommuneExtService extends GenericService<CommuneExtDao, CommuneExt,
} }
private void executeUidAndUserExtVipGradeCommune(CommuneExtBean vo) { private void executeUidAndUserExtVipGradeCommune(CommuneExtBean vo) {
UserExt userExt = userExtDao.getUserExt(vo.getMobilePhone()); UserExt userExt = userExtDao.GetUserExtInfoByPhone(vo.getMobilePhone());
if (userExt != null) { if (userExt != null) {
vo.setUid(userExt.getUid()); vo.setUid(userExt.getUid());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment