diff --git a/gan-modules/ruoyi-gan/src/main/java/com/ruoyi/app/domain/AppUser.java b/gan-modules/ruoyi-gan/src/main/java/com/ruoyi/app/domain/AppUser.java
index 8e241f4..655876b 100644
--- a/gan-modules/ruoyi-gan/src/main/java/com/ruoyi/app/domain/AppUser.java
+++ b/gan-modules/ruoyi-gan/src/main/java/com/ruoyi/app/domain/AppUser.java
@@ -197,6 +197,26 @@ public class AppUser extends BaseEntity
private Integer townId;
+ @Excel(name = "行业")
+ private String hy;
+
+ /** 奖项 */
+ @Excel(name = "奖项")
+ private String jx;
+
+ /** 教育 */
+ @Excel(name = "教育")
+ private String jy;
+
+ /** 行业vip是否可见0是1否 */
+ @Excel(name = "行业vip是否可见0是1否")
+ private Long isShowTech;
+
+ /** 创业方向 */
+ @Excel(name = "创业方向")
+ private String cyfx;
+
+
public void setId(Long id)
{
this.id = id;
diff --git a/gan-modules/ruoyi-gan/src/main/resources/mapper/app/AppUserMapper.xml b/gan-modules/ruoyi-gan/src/main/resources/mapper/app/AppUserMapper.xml
index b27f3a5..6943748 100644
--- a/gan-modules/ruoyi-gan/src/main/resources/mapper/app/AppUserMapper.xml
+++ b/gan-modules/ruoyi-gan/src/main/resources/mapper/app/AppUserMapper.xml
@@ -48,6 +48,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
+
+
+
+
a.id as "id",
@@ -92,7 +97,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select id, username, password, nickname, email,sex, phone, address, create_time, update_time, avatar_url, education, school, major, start_time, end_time, experience, company_name, industry, job_time, job_name, job_type, skill_id, job_content, type,is_member,job_end_time,
- order_id, order_start_time, order_end_time , `check` , back_ground_img,city_id , province_id , town_id from app_user
+ order_id, order_start_time, order_end_time , `check` , back_ground_img,city_id , province_id , town_id,hy, jx, jy, is_show_tech, cyfx from app_user
@@ -269,7 +279,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
push_id,
province_id,
city_id,
- town_id
+ town_id,
+ hy,
+ jx,
+ jy,
+ is_show_tech,
+ cyfx,
#{username},
@@ -313,7 +328,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{pushId},
#{provinceId},
#{cityId},
- #{townId}
+ #{townId},
+ #{hy},
+ #{jx},
+ #{jy},
+ #{isShowTech},
+ #{cyfx},
@@ -359,6 +379,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
order_end_time = #{orderEndTime},
`check` = #{check},
back_ground_img = #{backGroundImg},
+ hy = #{hy},
+ jx = #{jx},
+ jy = #{jy},
+ is_show_tech = #{isShowTech},
+ cyfx = #{cyfx},
where id = #{id}