历史游玩记录增加宽高字段

This commit is contained in:
tianfeng 2026-03-12 18:54:23 +08:00
parent 70c739849e
commit 426d57a830
4 changed files with 23 additions and 0 deletions

View File

@ -43,6 +43,8 @@ public class GamePlayHistoryQryExe {
co.setGameMode(info.getGameMode());
co.setGameOrigin(info.getGameOrigin());
co.setPlayTime(history.getPlayTime());
co.setHeight(info.getHeight());
co.setWidth(info.getWidth());
return co;
}
}

View File

@ -37,6 +37,8 @@ public class GamePlayHistoryRecordCmdExe {
gameInfo.setGameCode(config.getGameCode());
gameInfo.setGameOrigin(config.getGameOrigin());
gameInfo.setGameMode(config.getGameMode());
gameInfo.setHeight(config.getHeight());
gameInfo.setWidth(config.getWidth());
UserGamePlayHistory history = new UserGamePlayHistory();
history.setSysOrigin(cmd.getReqSysOrigin().getOrigin());

View File

@ -29,4 +29,14 @@ public class GamePlayHistoryCO {
private Timestamp playTime;
private String gameOrigin;
/**
*
*/
private Double height;
/**
*
*/
private Double width;
}

View File

@ -58,5 +58,14 @@ public class UserGamePlayHistory implements Serializable {
private String name;
private String cover;
private String gameCode;
/**
*
*/
private Double height;
/**
*
*/
private Double width;
}
}