V13
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.ruoyi.cai.dto.app.vo.rank;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class RankNodeRecharge {
|
||||
|
||||
@Schema(description = "用户ID,只有当前用户才有数据,其他用户因为保密问题没有")
|
||||
private Long userId;
|
||||
@Schema(description = "头像")
|
||||
private String avatar;
|
||||
@Schema(description = "昵称")
|
||||
private String nickname;
|
||||
private BigDecimal money;
|
||||
@Schema(description = "数值")
|
||||
private Long value;
|
||||
@Schema(description = "距离上一名差距")
|
||||
private Long diffLastValue;
|
||||
}
|
||||
Reference in New Issue
Block a user