init
This commit is contained in:
@@ -6,5 +6,6 @@ import lombok.Data;
|
||||
public class ConsumeResp {
|
||||
private Long userId;
|
||||
private Long consumeLogId;
|
||||
private Long traceId;
|
||||
private boolean success;
|
||||
}
|
||||
|
||||
@@ -11,6 +11,6 @@ public class VisitorQuery {
|
||||
@Schema(description = "类型 1=查询我的足迹 2=查询我的访客")
|
||||
private Integer type = 1;
|
||||
|
||||
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_WRITE)
|
||||
@Schema(description = "用户ID", hidden = true)
|
||||
private Long userId;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.ruoyi.cai.dto.app.vo.account;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@Schema(description = "账户明细说明")
|
||||
public class AccountDetailsAppVo {
|
||||
@Schema(description = "账户明细说明")
|
||||
private String message;
|
||||
@Schema(description = "变化值,有正负值")
|
||||
private Long changeValue;
|
||||
@Schema(description = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
/**
|
||||
* 账户类型 1-余额 2-收益
|
||||
*/
|
||||
@Schema(description = "账户类型 1-余额 2-收益")
|
||||
private Integer accountType;
|
||||
/**
|
||||
* 类别
|
||||
*/
|
||||
@Schema(description = "类别ID")
|
||||
private Integer cateId;
|
||||
@Schema(description = "显示图片")
|
||||
private String img;
|
||||
}
|
||||
Reference in New Issue
Block a user