This commit is contained in:
wells
2026-08-05 13:48:48 +08:00
commit 1303bf37dc
80 changed files with 5154 additions and 0 deletions
@@ -0,0 +1,29 @@
package com.tailbet.model.dto;
import lombok.Data;
/**
* 下注请求
*/
@Data
public class BetDTO {
/**
* 群ID
*/
private Long groupId;
/**
* 客户端消息ID(防重)
*/
private String clientMsgId;
/**
* 玩法:单/双/大/小/数字
*/
private String playType;
/**
* 下注金额
*/
private Integer betAmount;
}