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