init
This commit is contained in:
56
ruoyi-xq/src/main/java/com/ruoyi/xq/domain/AreaCode.java
Normal file
56
ruoyi-xq/src/main/java/com/ruoyi/xq/domain/AreaCode.java
Normal file
@@ -0,0 +1,56 @@
|
||||
package com.ruoyi.xq.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 行政区划对象 area_code
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-19
|
||||
*/
|
||||
@Data
|
||||
@TableName("area_code")
|
||||
public class AreaCode implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
* 行政区划代码
|
||||
*/
|
||||
@TableId(value = "code")
|
||||
private Integer code;
|
||||
/**
|
||||
* 名字
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* country:国家、province:省份(直辖市会在province和city显示)、city:市(直辖市会在province和city显示)、district:区县
|
||||
*/
|
||||
private String level;
|
||||
/**
|
||||
* 所属上级行政区划代码
|
||||
*/
|
||||
private Integer pcode;
|
||||
/**
|
||||
* 所属行政区划名字
|
||||
*/
|
||||
private String pname;
|
||||
/**
|
||||
* 行政区划完整名字
|
||||
*/
|
||||
private String fullname;
|
||||
/**
|
||||
* 经度
|
||||
*/
|
||||
private BigDecimal longitude;
|
||||
/**
|
||||
* 纬度
|
||||
*/
|
||||
private BigDecimal latitude;
|
||||
|
||||
}
|
||||
@@ -83,17 +83,27 @@ public class User implements Serializable {
|
||||
*/
|
||||
private Integer sign;
|
||||
/**
|
||||
* 居住地
|
||||
* 居住地(名称)
|
||||
*/
|
||||
private String residence;
|
||||
private String residenceName;
|
||||
/**
|
||||
* 户籍地
|
||||
* 居住地代码
|
||||
*/
|
||||
private String address;
|
||||
private String residenceCode;
|
||||
/**
|
||||
* 居住城市
|
||||
*/
|
||||
private String residenceCity;
|
||||
private String residenceCityName;
|
||||
|
||||
/**
|
||||
* 户籍地(名称)
|
||||
*/
|
||||
private String addressName;
|
||||
/**
|
||||
* 户籍地代码
|
||||
*/
|
||||
private String addressCode;
|
||||
|
||||
/**
|
||||
* 学历
|
||||
*/
|
||||
@@ -129,6 +139,11 @@ public class User implements Serializable {
|
||||
|
||||
@Schema(description = "基础资料是否完成 0 未完成 1已完成")
|
||||
private Integer finishBaseStatus;
|
||||
|
||||
/**
|
||||
* 基础信息完成进度
|
||||
*/
|
||||
private Integer baseStep;
|
||||
/**
|
||||
* 邀请人
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user