init
This commit is contained in:
@@ -15,6 +15,8 @@ public class UserUpdateReq {
|
||||
private String nickname;
|
||||
@Schema(description = "生日")
|
||||
private LocalDateTime birthday;
|
||||
@Schema(description = "性别")
|
||||
private Integer gender;
|
||||
@Schema(description = "头像")
|
||||
private String avatar;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.ruoyi.cai.dto.app.query;
|
||||
package com.ruoyi.cai.dto.app.query.index;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.ruoyi.cai.dto.app.query.index;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Schema(description = "群打招呼用户搜索")
|
||||
public class GreetQuery {
|
||||
@Schema(description = "城市")
|
||||
private Long city;
|
||||
@Schema(description = "搜索类型 1=活跃 2=同城")
|
||||
private Integer type = 1;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.ruoyi.cai.dto.app.query;
|
||||
package com.ruoyi.cai.dto.app.query.index;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -11,7 +11,6 @@ public class UserQuery {
|
||||
private String nickname;
|
||||
@Schema(description = "蜜瓜号")
|
||||
private String usercode;
|
||||
|
||||
@Schema(description = "性别")
|
||||
private Integer gender;
|
||||
}
|
||||
Reference in New Issue
Block a user