package cc.mrbird.febs.mall.vo;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
public class AdminChatRedBagVo {
|
private Long id;
|
/**
|
* 消息ID
|
*/
|
private Long msgId;
|
/**
|
* 消息类型SINGLE/GROUP
|
*/
|
private String msgType;
|
/**
|
* 红包z总个数
|
*/
|
private Integer totalCnt;
|
/**
|
* 剩余红包个数
|
*/
|
private Integer avaCnt;
|
/**
|
* 金额
|
*/
|
private BigDecimal amount;
|
/**
|
* 剩余金额
|
*/
|
private BigDecimal amountAva;
|
/**
|
* 钱包类型 USDT RMB
|
*/
|
private String amountType;
|
/**
|
* 是否被领取 1:是 2:否
|
*/
|
private Integer state;
|
/**
|
* 是否已过期 1:是2:否
|
*/
|
private Integer overdueState;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 过期时间
|
*/
|
private Date overdueTime;
|
/**
|
* 版本控制
|
*/
|
private Integer version;
|
/**
|
* 发送方
|
*/
|
private Long fromUserId;
|
/**
|
* 接收方
|
*/
|
private Long toUserId;
|
/**
|
* 雷
|
*/
|
private Integer boomNum;
|
}
|