init
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.ruoyi.xq.dto.app.areacode;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AreaCodeHomeVo {
|
||||
private Integer code;
|
||||
private String name;
|
||||
private String firstSpell;
|
||||
}
|
||||
@@ -22,7 +22,7 @@ public class DynamicQuery {
|
||||
private Integer ageEnd;
|
||||
|
||||
@Schema(description = "居住地")
|
||||
private String residenceCode;
|
||||
private Integer residenceCode;
|
||||
|
||||
@Schema(description = "1-最新发布 2-热门动态")
|
||||
private Integer sortBy = 1;
|
||||
|
||||
@@ -41,10 +41,12 @@ public class HomePageReq extends PageQuery {
|
||||
private Integer marriage;
|
||||
@Schema(description = "教育")
|
||||
private Integer education;
|
||||
@Schema(description = "居住城市编码")
|
||||
private String residenceCityCode;
|
||||
// @Schema(description = "居住地")
|
||||
// private String residenceCode;
|
||||
@Schema(description = "居住地城市中文")
|
||||
private String residenceCodeStr;
|
||||
// private Integer residenceCode;
|
||||
// @Schema(description = "居住地城市中文")
|
||||
// private String residenceCodeStr;
|
||||
@Schema(description = "VIP查询限制")
|
||||
private VipQuery vipQuery;
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ public class UpdateBaseInfoReq {
|
||||
* 居住地
|
||||
*/
|
||||
@Schema(description = "居住地")
|
||||
private String residenceCode;
|
||||
private Integer residenceCode;
|
||||
/**
|
||||
* 户籍地
|
||||
*/
|
||||
|
||||
@@ -30,7 +30,7 @@ public class UpdateUserFullInfoReq {
|
||||
private String wxCode;
|
||||
|
||||
@Schema(description = "居住地")
|
||||
private String residenceCode;
|
||||
private Integer residenceCode;
|
||||
@Schema(description = "户籍地")
|
||||
private String addressCode;
|
||||
@Schema(description = "学历")
|
||||
@@ -87,7 +87,7 @@ public class UpdateUserFullInfoReq {
|
||||
@Schema(description = "择偶条件-学历")
|
||||
private Integer filterEducation;
|
||||
@Schema(description = "择偶条件-地区Code")
|
||||
private String filterResidenceCode;
|
||||
private Integer filterResidenceCode;
|
||||
@Schema(description = "择偶条件-年收入")
|
||||
private Integer filterAnnualIncome;
|
||||
@Schema(description = "择偶条件-小孩情况")
|
||||
|
||||
@@ -67,7 +67,7 @@ public class CurrentUserFullInfoVo {
|
||||
* 居住地
|
||||
*/
|
||||
@Schema(description = "居住地")
|
||||
private String residenceCode;
|
||||
private Integer residenceCode;
|
||||
@Schema(description = "居住地名称")
|
||||
private String residenceName;
|
||||
@Schema(description = "居住地城市")
|
||||
@@ -216,7 +216,7 @@ public class CurrentUserFullInfoVo {
|
||||
@Schema(description = "择偶条件-地区")
|
||||
private String filterResidence;
|
||||
@Schema(description = "择偶条件-地区Code")
|
||||
private String filterResidenceCode;
|
||||
private Integer filterResidenceCode;
|
||||
/**
|
||||
* 择偶条件-年收入
|
||||
*/
|
||||
|
||||
@@ -47,7 +47,7 @@ public class CurrentUserInfoVo {
|
||||
@Schema(description = "居住地名称")
|
||||
private String residenceName;
|
||||
@Schema(description = "居住地编码")
|
||||
private String residenceCode;
|
||||
private Integer residenceCode;
|
||||
@Schema(description = "户籍地名称")
|
||||
private String addressName;
|
||||
@Schema(description = "户籍地编码")
|
||||
@@ -65,9 +65,6 @@ public class CurrentUserInfoVo {
|
||||
@Schema(description = "imToken")
|
||||
private String imToken;
|
||||
|
||||
@Schema(description = "交换微信次数")
|
||||
private Integer wxExchangeNum = 0;
|
||||
|
||||
@Schema(description = "已认证数量")
|
||||
private Integer alreadyAuthNum = 0;
|
||||
|
||||
@@ -90,7 +87,7 @@ public class CurrentUserInfoVo {
|
||||
* 交换微信次数
|
||||
*/
|
||||
@Schema(description = "交换微信次数")
|
||||
private Integer wxTransNum;
|
||||
private Integer wxTransNum = 0;
|
||||
/**
|
||||
* 相册
|
||||
*/
|
||||
|
||||
@@ -62,7 +62,7 @@ public class HomeUserVo {
|
||||
@Schema(description = "居住地名称")
|
||||
private String residenceName;
|
||||
@Schema(description = "居住地编码")
|
||||
private String residenceCode;
|
||||
private Integer residenceCode;
|
||||
/**
|
||||
* 户籍地
|
||||
*/
|
||||
@@ -208,7 +208,7 @@ public class HomeUserVo {
|
||||
private String filterResidence;
|
||||
|
||||
@Schema(description = "择偶条件-地区Code")
|
||||
private String filterResidenceCode;
|
||||
private Integer filterResidenceCode;
|
||||
/**
|
||||
* 择偶条件-年收入
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user