From 1e4e6a526682ddcd62378b1f2975e7d4b4b2de4f Mon Sep 17 00:00:00 2001 From: zhangfeng <1603559716@qq.com> Date: 星期一, 17 七月 2023 17:07:12 +0800 Subject: [PATCH] 用户模块修改 --- src/main/java/com/gk/hotwork/Domain/UserInfo.java | 67 +++++++++++++++++++++++++++++++++ 1 files changed, 67 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/hotwork/Domain/UserInfo.java b/src/main/java/com/gk/hotwork/Domain/UserInfo.java index b4e5524..85dad52 100644 --- a/src/main/java/com/gk/hotwork/Domain/UserInfo.java +++ b/src/main/java/com/gk/hotwork/Domain/UserInfo.java @@ -178,6 +178,73 @@ private String slice; + private String province; + + private String city; + + private String county; + + /** + * 行政级别 1-省(自治区) 2-地(市、州) 3-区/县 + */ + private Integer executiveLevel; + /** + * 专业方向id + */ + private Long specialityId; + /** + * 专业等级(1初级,2中级,3高级,4其他) + */ + private Integer professionalLevel; + + public Long getSpecialityId() { + return specialityId; + } + + public void setSpecialityId(Long specialityId) { + this.specialityId = specialityId; + } + + public Integer getProfessionalLevel() { + return professionalLevel; + } + + public void setProfessionalLevel(Integer professionalLevel) { + this.professionalLevel = professionalLevel; + } + + public Integer getExecutiveLevel() { + return executiveLevel; + } + + public void setExecutiveLevel(Integer executiveLevel) { + this.executiveLevel = executiveLevel; + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province; + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getCounty() { + return county; + } + + public void setCounty(String county) { + this.county = county; + } + public Long getRoleid() { return roleid; } -- Gitblit v1.9.2