From 6f302d5dcd1d47a9512151d4e31078bc98c62f08 Mon Sep 17 00:00:00 2001 From: fengjin <1435304038@qq.com> Date: 星期二, 18 十月 2022 18:31:17 +0800 Subject: [PATCH] Merge branch 'huacheng_test' of http://gitlab.nhys.cdnhxx.com/root/zhihuishequ into huacheng_test --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComSanshuoExpert.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComSanshuoExpert.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComSanshuoExpert.java index dea7002..666c170 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComSanshuoExpert.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComSanshuoExpert.java @@ -1,5 +1,6 @@ package com.panzhihua.service_community.entity; +import com.alibaba.excel.annotation.ExcelProperty; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; @@ -28,26 +29,31 @@ /** * 专家级别(1三说会堂2行业分中心3街道4社区) */ + @ExcelProperty("level") private Integer level; /** * 所属社区id */ + @ExcelProperty("communityId") private Long communityId; /** * 工作时间 */ + @ExcelProperty("workTime") private String workTime; /** * 擅长解决时间类型 */ + @ExcelProperty("goodAt") private String goodAt; /** * 姓名 */ + @ExcelProperty("name") private String name; /** @@ -58,6 +64,7 @@ /** * 手机号 */ + @ExcelProperty("phone") private String phone; /** @@ -121,6 +128,7 @@ private Integer count; @TableField(exist = false) private BigDecimal rate; + private Integer added; @TableField(exist = false) -- Gitblit v1.7.1