123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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;
- import lombok.Data;
- import org.joda.time.DateTime;
- import java.io.Serializable;
- @Data
- @TableName("sys_uptown_house")
- public class SysUptownHouse implements Serializable {
- @TableId("house_id")
- private Long houseId;
- @TableField(exist = false)
- private Long uptownId;
- @TableField(exist = false)
- 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)
- private String reportId;
- @TableField(exist = false)
- private String msStatus;
- @TableField(exist = false)
- private String time;
- @TableField("doorplate")
- @ExcelProperty(value = {"房间号"}, index = 3)
- private String doorplate;
- @TableField("status")
- private int status;
- @TableField("report_status")
- private int reportStatus;
- @TableField("time_create")
- private DateTime timeCreate;
- @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;
- }
|