init
This commit is contained in:
@@ -7,11 +7,6 @@ import lombok.Data;
|
||||
public class UserStatusUpdateAppReq {
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
/**
|
||||
* 征婚状态 1-寻找中 2-已脱单 3-隐藏资料
|
||||
*/
|
||||
@Schema(description = "征婚状态 1-寻找中 2-已脱单 3-隐藏资料")
|
||||
private Integer personalsStatus;
|
||||
/**
|
||||
* 谁可查看头像 1-所有用户 2-VIP用户 3-实名用户 4-实名认证且VIP用户 5-不公开
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.ruoyi.xq.dto.app.userstatus;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserStatusUpdateMasterAppReq {
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
/**
|
||||
* 征婚状态 1-寻找中 2-已脱单 3-隐藏资料
|
||||
*/
|
||||
@Schema(description = "征婚状态 1-寻找中 2-已脱单 3-隐藏资料")
|
||||
private Integer personalsStatus;
|
||||
}
|
||||
Reference in New Issue
Block a user