/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~o~ \/ ||| \\ _/~~- # __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~ # _-~~ .=~ | \\-_ '-~7 /- / || \ / # .~ .~ | \\ -_ / /- / || \ / # / ____ / | \\ ~-_/ /|- _/ .|| \ / # |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\ # ' ~-| /| |-~\~~ __--~~ # |-~~-_/ | | ~\_ _-~ /\ # / \ \__ \/~ \__ # _--~ _/ | .-~~____--~-/ ~~==. # ((->/~ '.|||' -_| ~~-/ , . _|| # -_ ~\ ~~---l__i__i__i--~~_/ # _-~-__ ~) \--______________--~~ # //.-~~~-~_--~- |-------~~~~~~~~ # //.-~~~--\ # 神兽保佑 # 永无BUG! */ package com.nanjing.water.repository.po; import lombok.Data; import com.baomidou.mybatisplus.annotation.*; import java.io.Serializable; import java.sql.Timestamp; /** * HeartbeatData * @author lin.liu */ @Data @TableName("heartbeat_data") public class HeartbeatDataPO implements Serializable { /** * null */ private Long id; /** * null */ @TableField(value = "data_key") private String dataKey; /** * null */ @TableField(value = "data_value") private Integer dataValue; /** * null */ @TableLogic @TableField(value = "is_delete") private Integer isDelete; /** * null */ @TableField(value = "remark") private String remark; /** * null */ @TableField(value = "create_time") private Long createTime; /** * null */ @TableField(value = "update_time") private Timestamp updateTime; }