/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~o~ \/ ||| \\ _/~~- # __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~ # _-~~ .=~ | \\-_ '-~7 /- / || \ / # .~ .~ | \\ -_ / /- / || \ / # / ____ / | \\ ~-_/ /|- _/ .|| \ / # |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\ # ' ~-| /| |-~\~~ __--~~ # |-~~-_/ | | ~\_ _-~ /\ # / \ \__ \/~ \__ # _--~ _/ | .-~~____--~-/ ~~==. # ((->/~ '.|||' -_| ~~-/ , . _|| # -_ ~\ ~~---l__i__i__i--~~_/ # _-~-__ ~) \--______________--~~ # //.-~~~-~_--~- |-------~~~~~~~~ # //.-~~~--\ # 神兽保佑 # 永无BUG! */ package com.fengdu.gas.repository.po; import lombok.Data; import com.baomidou.mybatisplus.annotation.*; import java.io.Serializable; import java.sql.Timestamp; /** * 设备信息 * @author zr */ @Data @TableName("water_facility") public class WaterFacilityPO implements Serializable { /** * null */ private Long id; /** * 设备名称 */ @TableField(value = "facility_name") private String facilityName; /** * 设备编号 */ @TableField(value = "facility_code") private String facilityCode; /** * 设备类型 */ @TableField(value = "facility_type") private Long facilityType; /** * 监控点id */ @TableField(value = "point_id") private Long pointId; /** * 是否在线 */ @TableField(value = "is_online") private Integer isOnline; /** * 安装地址 */ @TableField(value = "address") private String address; /** * 备注 */ @TableField(value = "remark") private String remark; /** * 设备图片 */ @TableField(value = "facility_url") private String facilityUrl; /** * 数据创建时间 */ @TableField(value = "create_time") private Long createTime; /** * 最后更新时间 */ @TableField(value = "update_time") private Timestamp updateTime; /** * 是否删除(逻辑删除) */ @TableLogic @TableField(value = "is_delete") private Integer isDelete; }