/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~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("facility_run_time") public class FacilityRunTimePO implements Serializable { /** * 主键id */ private Long id; /** * 泵房id */ @TableField(value = "point_id") private Long pointId; /** * 泵房名称 */ @TableField(value = "point_name") private String pointName; /** * 设备id */ @TableField(value = "facility_id") private Long facilityId; /** * 设备名称 */ @TableField(value = "facility_name") private String facilityName; /** * 开启时间 */ @TableField(value = "open_time") private String openTime; /** * 关闭时间 */ @TableField(value = "close_time") private String closeTime; /** * 运行时长 */ @TableField(value = "run_time") private Integer runTime; /** * 是否删除 */ @TableLogic @TableField(value = "is_delete") private Integer isDelete; /** * 创建时间 */ @TableField(value = "create_time") private Long createTime; /** * 修改时间 */ @TableField(value = "update_time") private Timestamp updateTime; }