删除无用字段

back_recharge
lvxinran 2019-11-06 16:25:18 +08:00
parent cdf7a2ba30
commit 0d461892e4
2 changed files with 0 additions and 12 deletions

View File

@ -13,8 +13,6 @@ public class GuildMyInfo extends MongoBase {
private List<Integer> path = new ArrayList<>(); //行走路线
private int curPos=STableManager.getFigureConfig(CommonStaticConfig.class).getInitPos();//当前位置
private long preMoveTimestamp; //上次更新时间
private long joinTime;
public void clearOfLevelGuild(){
path.clear();
curPos = STableManager.getFigureConfig(CommonStaticConfig.class).getInitPos();
@ -87,13 +85,4 @@ public class GuildMyInfo extends MongoBase {
public long getPreMoveTimestamp() {
return preMoveTimestamp;
}
public long getJoinTime() {
return joinTime;
}
public void setJoinTime(long joinTime) {
this.joinTime = joinTime;
updateString("joinTime",joinTime);
}
}

View File

@ -505,7 +505,6 @@ public class GuildLogic {
cache.setGuildPosition(GlobalsDef.MEMBER);
RedisUtil.getInstence().putMapEntry(RedisKey.PLAYER_INFO_CACHE,"",String.valueOf(applyId),cache);
targetUser.getUserMissionManager().onGameEvent(targetUser, GameEvent.JOIN_FAMILY);
targetUser.getGuildMyInfo().setJoinTime(TimeUtils.now());
}catch (Exception e){
LOGGER.error("the exception={}",e);
}finally {