历史游玩记录增加宽高字段
This commit is contained in:
parent
70c739849e
commit
426d57a830
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@ -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());
|
||||
|
||||
@ -29,4 +29,14 @@ public class GamePlayHistoryCO {
|
||||
private Timestamp playTime;
|
||||
|
||||
private String gameOrigin;
|
||||
|
||||
/**
|
||||
* 高
|
||||
*/
|
||||
private Double height;
|
||||
|
||||
/**
|
||||
* 宽
|
||||
*/
|
||||
private Double width;
|
||||
}
|
||||
|
||||
@ -58,5 +58,14 @@ public class UserGamePlayHistory implements Serializable {
|
||||
private String name;
|
||||
private String cover;
|
||||
private String gameCode;
|
||||
/**
|
||||
* 高
|
||||
*/
|
||||
private Double height;
|
||||
|
||||
/**
|
||||
* 宽
|
||||
*/
|
||||
private Double width;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user