From a70a852fdee6ed2a0d82c320f77f089e962305cd Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Wed, 19 Jul 2023 10:07:44 +0800
Subject: [PATCH] params
---
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