This commit is contained in:
dute7liang
2023-12-30 16:19:09 +08:00
parent 73a7342b0f
commit 49706e12e2
24 changed files with 533 additions and 38 deletions

View File

@@ -7,6 +7,8 @@ import lombok.Data;
public class AlbumAddReq {
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_ONLY)
private Long userId;
@Schema(description = "id")
private Long id;
@Schema(description = "url")
private String url;
@Schema(description = "排序")

View File

@@ -15,4 +15,6 @@ public class UserUpdateReq {
private String nickname;
@Schema(description = "生日")
private LocalDateTime birthday;
@Schema(description = "头像")
private String avatar;
}

View File

@@ -13,11 +13,6 @@ public class AnchorVo {
*/
@Schema(description = "用户ID")
private Long userId;
/**
* 技能ID
*/
@Schema(description = "技能ID")
private Integer skillId;
/**
* 价格默认50彩币
*/

View File

@@ -0,0 +1,35 @@
package com.ruoyi.cai.dto.app.vo;
import lombok.Data;
@Data
public class CameraAuditVo {
/**
*
*/
private Integer id;
/**
* 用户ID
*/
private Long userId;
/**
* 动作类型 0
*/
private Integer actionType;
/**
* 动作类型图片
*/
private String actionImage;
/**
* 头像地址
*/
private String photo;
/**
* 审核状态 0未提交 1审核中 2 审核通过 3 审核不通过
*/
private Integer auditStatus;
/**
*
*/
private String auditRemark;
}