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