游戏游玩历史增加gameOrigin
This commit is contained in:
parent
f328bfdca9
commit
e0579f0746
@ -40,6 +40,7 @@ public class GamePlayHistoryQryExe {
|
||||
co.setName(info.getName());
|
||||
co.setCover(info.getCover());
|
||||
co.setGameCode(info.getGameCode());
|
||||
co.setGameOrigin(info.getGameOrigin());
|
||||
co.setPlayTime(history.getPlayTime());
|
||||
return co;
|
||||
}
|
||||
|
||||
@ -35,6 +35,7 @@ public class GamePlayHistoryRecordCmdExe {
|
||||
gameInfo.setName(config.getName());
|
||||
gameInfo.setCover(config.getCover());
|
||||
gameInfo.setGameCode(config.getGameCode());
|
||||
gameInfo.setGameOrigin(config.getGameOrigin());
|
||||
|
||||
UserGamePlayHistory history = new UserGamePlayHistory();
|
||||
history.setSysOrigin(cmd.getReqSysOrigin().getOrigin());
|
||||
|
||||
@ -25,4 +25,6 @@ public class GamePlayHistoryCO {
|
||||
private String gameCode;
|
||||
|
||||
private Timestamp playTime;
|
||||
|
||||
private String gameOrigin;
|
||||
}
|
||||
|
||||
@ -51,6 +51,7 @@ public class UserGamePlayHistory implements Serializable {
|
||||
public static class GameInfo {
|
||||
private Long id;
|
||||
private String gameId;
|
||||
private String gameOrigin;
|
||||
private String name;
|
||||
private String cover;
|
||||
private String gameCode;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user