init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.tailbet.model.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 积分操作请求
|
||||
*/
|
||||
@Data
|
||||
public class PointsDTO {
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 积分数量
|
||||
*/
|
||||
private Long amount;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
}
|
||||
Reference in New Issue
Block a user