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,30 @@
package com.tailbet.model.dto;
import lombok.Data;
import java.math.BigDecimal;
/**
* 发红包请求
*/
@Data
public class SendRpDTO {
/**
* 群ID
*/
private Long groupId;
/**
* 红包总金额
*/
private BigDecimal totalAmount;
/**
* 红包个数
*/
private Integer totalCount;
/**
* 绑定的局ID(可选)
*/
private Long roundId;
}