123
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.ruoyi.cai.dto.app.query.member;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateNoGreet {
|
||||
@Schema(description = "用户ID",hidden = true)
|
||||
private Long userId;
|
||||
@Schema(description = "隐身模式 0-关闭 1-打开")
|
||||
private Integer noGreet;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.ruoyi.cai.dto.app.query.member;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateRankHideReq {
|
||||
@Schema(description = "用户ID",hidden = true)
|
||||
private Long userId;
|
||||
@Schema(description = "隐藏排行榜 0-关闭 1-打开")
|
||||
private Integer rankHide;
|
||||
}
|
||||
@@ -2,6 +2,7 @@ package com.ruoyi.cai.dto.app.vo.user;
|
||||
|
||||
import com.ruoyi.cai.domain.MemberPrice;
|
||||
import com.ruoyi.cai.domain.MemberSkill;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
@@ -14,16 +15,24 @@ public class MemberInfoVo {
|
||||
private String nickname;
|
||||
private Integer gender;
|
||||
private String avatar;
|
||||
@Schema(description = "会员技能")
|
||||
private List<MemberPrice> memberPriceList;
|
||||
@Schema(description = "会员价格")
|
||||
private List<MemberSkill> memberSkillList;
|
||||
@Schema(description = "是否开通永久会员 1-永久 0-非永久")
|
||||
private Integer longs;
|
||||
@Schema(description = "过期时间")
|
||||
private LocalDateTime expireTime;
|
||||
@Schema(description = "过期时间字符")
|
||||
private String expireTimeStr;
|
||||
@Schema(description = "是否开通会员")
|
||||
private Integer on;
|
||||
|
||||
private String bannerPic = "images/member/vip_banner.gif";
|
||||
|
||||
@Schema(description = "隐藏排行榜 0-关闭 1-打开")
|
||||
private Integer rankHide;
|
||||
@Schema(description = "隐身模式 0-关闭 1-打开")
|
||||
private Integer noGreet;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user