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,24 @@
package com.tailbet.model.dto;
import lombok.Data;
/**
* 积分操作请求
*/
@Data
public class PointsDTO {
/**
* 用户ID
*/
private Long userId;
/**
* 积分数量
*/
private Long amount;
/**
* 备注
*/
private String remark;
}