package cn.com.lzt.toilets.entity; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import org.jeecgframework.poi.excel.annotation.Excel; import javax.persistence.*; import java.util.Date; /** * @Title: Entity * @Description: 公厕耗能管理表 * @author LiuMengxiang * @date 2021年11月16日20:39:27 * @version V1.0 * */ @Data @Entity @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @Table(name = "t_public_toilet_energy") @SuppressWarnings("serial") public class TPublicToiletEnergy implements java.io.Serializable{ @Id @Column(name = "id") @Excel(name = "id", width = 255.0D) private Integer id; //公厕编码 @Column(name = "code") @Excel(name = "公厕编码", width = 255.0D) private String code; //公厕名称 @Column(name = "name") @Excel(name = "公厕名称", width = 255.0D) private String name; //公厕位置 @Column(name = "`location`") @Excel(name = "公厕位置", width = 255.0D) private String location; //所属网格化区域 @Column(name = "region") @Excel(name = "所属网格化区域", width = 255.0D) private String region; //统计时间 @Column(name = "count_date") @Excel(name = "统计时间", width = 255.0D) private Date countDate; //统计人员 @Column(name = "statistician") @Excel(name = "统计人员", width = 255.0D) private String statistician; //水表值 @Column(name = "water_meter") @Excel(name = "水表值", width = 255.0D) private String waterMeter; //电表值 @Column(name = "watt_meter") @Excel(name = "电表值", width = 255.0D) private String wattMeter; }