init
This commit is contained in:
@@ -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 = "排序")
|
||||
|
||||
@@ -15,4 +15,6 @@ public class UserUpdateReq {
|
||||
private String nickname;
|
||||
@Schema(description = "生日")
|
||||
private LocalDateTime birthday;
|
||||
@Schema(description = "头像")
|
||||
private String avatar;
|
||||
}
|
||||
|
||||
@@ -13,11 +13,6 @@ public class AnchorVo {
|
||||
*/
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
/**
|
||||
* 技能ID
|
||||
*/
|
||||
@Schema(description = "技能ID")
|
||||
private Integer skillId;
|
||||
/**
|
||||
* 价格,默认50彩币
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user