This commit is contained in:
77
2024-04-23 02:11:20 +08:00
parent 7434564e3e
commit 9aa9ffc0b9
5 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
package com.ruoyi.xq.dto.admin.user;
import com.ruoyi.xq.domain.User;
import lombok.Data;
@Data
public class UserAdminUpdateVo extends User {
private Integer carStatus;
private Integer housingStatus;
}

View File

@@ -23,4 +23,6 @@ public class AddUserReq {
private Integer annualIncome;
private Integer forPersonals;
private String pictures;
private Integer carStatus;
private Integer housingStatus;
}

View File

@@ -21,4 +21,6 @@ public class UpdateUserReq {
private String profession;
private Integer forPersonals;
private Integer annualIncome;
private Integer carStatus;
private Integer housingStatus;
}