|
@@ -2,9 +2,12 @@ package com.zanxiang.game.data.serve.pojo.vo;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
+import org.ini4j.Reg;
|
|
|
+import org.nutz.dao.entity.annotation.Many;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.time.LocalDate;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* @author ZhangXianyu
|
|
@@ -15,13 +18,18 @@ import java.time.LocalDate;
|
|
|
public class GSGameServerDayVO implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
+ @ApiModelProperty(value = "游戏id")
|
|
|
+ private Long parentGameId;
|
|
|
|
|
|
@ApiModelProperty(value = "游戏名称")
|
|
|
- private String gameName;
|
|
|
+ private String parentGameName;
|
|
|
|
|
|
@ApiModelProperty(value = "游戏类别")
|
|
|
private String parentGameClassify;
|
|
|
|
|
|
+ @ApiModelProperty(value = "游戏区服id")
|
|
|
+ private Long serverId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "游戏区服名称")
|
|
|
private String serverName;
|
|
|
|
|
@@ -29,20 +37,23 @@ public class GSGameServerDayVO implements Serializable {
|
|
|
private String sourceSystem;
|
|
|
|
|
|
@ApiModelProperty(value = "开服天数")
|
|
|
- private Integer day;
|
|
|
+ private Integer serverDay;
|
|
|
|
|
|
@ApiModelProperty(value = "开服时间")
|
|
|
- private LocalDate beginDate;
|
|
|
+ private LocalDate dt;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "gsIds")
|
|
|
+ private String gsIds;
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "新用户人数")
|
|
|
- private Integer newUserCount;
|
|
|
+ private Long totalRegNum;
|
|
|
|
|
|
@ApiModelProperty(value = "创角人数")
|
|
|
- private Integer newRoleCount;
|
|
|
+ private Long totalRoleNum;
|
|
|
|
|
|
@ApiModelProperty(value = "付费人数")
|
|
|
- private Integer payUserCount;
|
|
|
+ private Long totalAmountNum;
|
|
|
|
|
|
/**
|
|
|
* 区服第1天:活跃留存率/付费留存率/小R留存率/中R留存率/大R留存率/超大R留存率/第N天创角总人数/第N天付费总人数
|
|
@@ -362,6 +373,9 @@ public class GSGameServerDayVO implements Serializable {
|
|
|
private String yesterday;
|
|
|
|
|
|
|
|
|
+ private List<GSGameServerDayRVO> gsGameServerDayRVOS;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|