This commit is contained in:
77
2024-04-20 23:00:16 +08:00
parent 10486e593a
commit bd9eb02713
18 changed files with 327 additions and 54 deletions

View File

@@ -10,6 +10,5 @@ public class UserAuthAdminVo extends UserAuth {
*/
private String nickname;
private String mobile;
private String avatar;
}

View File

@@ -7,7 +7,7 @@ import java.time.LocalDate;
@Data
public class AddUserReq {
private String mobile;
private Integer userType;
private Integer type;
private String nickname;
private String avatar;
private Integer gender;

View File

@@ -0,0 +1,98 @@
package com.ruoyi.xq.dto.admin.user.req;
import lombok.Data;
@Data
public class UpdateUserInfoReq {
private String mobile;
private Long userId;
/**
* 毕业院校
*/
private String graduateSchool;
/**
* 兴趣爱好
*/
private String hobbys;
/**
* 是否要小孩
*/
private Integer wantChild;
/**
* 愿与对方父母同住
*/
private Integer liveAtParent;
/**
* 是否接受异地恋
*/
private Integer loveAtDistance;
/**
* 何时结婚
*/
private Integer whenMarriage;
/**
* 有没有小孩
*/
private Integer childStatus;
/**
* 家庭背景
*/
private Integer familyBackground;
/**
* 是否吸烟
*/
private Integer smokeStatus;
/**
* 是否喝酒
*/
private Integer drinkStatus;
/**
* 住房情况
*/
private Integer housingStatus;
/**
* 购车情况
*/
private Integer carStatus;
/**
* 民族
*/
private String nation;
// 一下为user
/**
* 自我描述
*/
private String remark;
/**
* 为谁征婚
*/
private Integer forPersonals;
/**
* 职业
*/
private String profession;
/**
* 年收入
*/
private Integer annualIncome;
private String nickname;
/**
* 星座
*/
private Integer sign;
/**
* 公司性质
*/
private Integer companyNature;
/**
* 体型
*/
private Integer somatotype;
/**
* 生肖
*/
private Integer zodiac;
}

View File

@@ -6,8 +6,8 @@ import java.time.LocalDate;
@Data
public class UpdateUserReq {
private Long userId;
private Integer userType;
private Long id;
private Integer type;
private String nickname;
private String avatar;
private Integer gender;

View File

@@ -0,0 +1,11 @@
package com.ruoyi.xq.dto.admin.userauth;
import com.ruoyi.xq.domain.User;
import com.ruoyi.xq.domain.UserAuth;
import lombok.Data;
@Data
public class UserAuthAdminInfoVo {
private UserAuth userAuth;
private User user;
}