init
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user