fix
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
package com.tailbet.model.vo;
|
||||
|
||||
import lombok.Data;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 群统计信息
|
||||
*/
|
||||
@Data
|
||||
public class GroupStatVo {
|
||||
/**
|
||||
* 群ID
|
||||
*/
|
||||
private Long groupId;
|
||||
|
||||
/**
|
||||
* 总局数
|
||||
*/
|
||||
private Integer totalRounds;
|
||||
|
||||
/**
|
||||
* 进行中局数
|
||||
*/
|
||||
private Integer ongoingRounds;
|
||||
|
||||
/**
|
||||
* 总下注人次
|
||||
*/
|
||||
private Integer totalBetCount;
|
||||
|
||||
/**
|
||||
* 总下注金额
|
||||
*/
|
||||
private Long totalBetAmount;
|
||||
|
||||
/**
|
||||
* 总派奖金额
|
||||
*/
|
||||
private Long totalAwardAmount;
|
||||
|
||||
/**
|
||||
* 庄家总利润
|
||||
*/
|
||||
private Long totalProfit;
|
||||
|
||||
/**
|
||||
* 各玩法下注统计
|
||||
*/
|
||||
private List<PlayTypeStat> playTypeStats;
|
||||
|
||||
/**
|
||||
* 玩法统计
|
||||
*/
|
||||
@Data
|
||||
public static class PlayTypeStat {
|
||||
private String playType;
|
||||
private Integer betCount;
|
||||
private Integer betAmount;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user