|
@@ -1,5 +1,6 @@
|
|
|
package com.bofeng.entity;
|
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
|
|
import com.baomidou.mybatisplus.annotations.TableId;
|
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
@@ -20,9 +21,11 @@ public class SysUptownHouse implements Serializable {
|
|
|
private Long unitId;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"楼栋"}, index = 1)
|
|
|
private String ridgepole;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"单元"}, index = 2)
|
|
|
private String unit;
|
|
|
|
|
|
@TableField(exist = false)
|
|
@@ -35,6 +38,7 @@ public class SysUptownHouse implements Serializable {
|
|
|
private String time;
|
|
|
|
|
|
@TableField("doorplate")
|
|
|
+ @ExcelProperty(value = {"房间号"}, index = 3)
|
|
|
private String doorplate;
|
|
|
|
|
|
@TableField("status")
|
|
@@ -49,10 +53,28 @@ public class SysUptownHouse implements Serializable {
|
|
|
@TableField("time_update")
|
|
|
private DateTime timeUpdate;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"小区名称"}, index = 0)
|
|
|
+ private String uptownName;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"小区大门"}, index = 5)
|
|
|
+ private String doorName;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"进入时间"}, index = 6)
|
|
|
+ private String intoDate;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"外出时间"}, index = 7)
|
|
|
+ private String outDate;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ @ExcelProperty(value = {"用户名"}, index = 4)
|
|
|
+ private String nickName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String jcStatus;
|
|
|
|
|
|
|
|
|
|