/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~o~ \/ ||| \\ _/~~- # __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~ # _-~~ .=~ | \\-_ '-~7 /- / || \ / # .~ .~ | \\ -_ / /- / || \ / # / ____ / | \\ ~-_/ /|- _/ .|| \ / # |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\ # ' ~-| /| |-~\~~ __--~~ # |-~~-_/ | | ~\_ _-~ /\ # / \ \__ \/~ \__ # _--~ _/ | .-~~____--~-/ ~~==. # ((->/~ '.|||' -_| ~~-/ , . _|| # -_ ~\ ~~---l__i__i__i--~~_/ # _-~-__ ~) \--______________--~~ # //.-~~~-~_--~- |-------~~~~~~~~ # //.-~~~--\ # 神兽保佑 # 永无BUG! */ package com.nanjing.water.repository.po; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableLogic; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.io.Serializable; import java.sql.Timestamp; /** * 设备设定参数 * @author lin.liu */ @Data @TableName("water_facility_parameter") public class WaterFacilityParameterPO implements Serializable { /** * 主键 */ private Long id; /** * 设备id */ @TableField(value = "facility_id") private Long facilityId; /** * 设备code */ @TableField(value = "facility_code") private String facilityCode; /** * 参数编码 */ @TableField(value = "columns_code") private String columnsCode; /** * 参数名称 */ @TableField(value = "columns_show") private String columnsShow; /** * 锟斤拷位 */ @TableField(value = "columns_units") private String columnsUnits; /** * 数据创建时间 */ @TableField(value = "create_time") private Long createTime; /** * 最后更新时间 */ @TableField(value = "update_time") private Timestamp updateTime; /** * 是否删除(逻辑删除) */ @TableLogic @TableField(value = "is_delete") private Integer isDelete; /** * 参数值 */ @TableField(value = "column_value") private String columnValue; /** * 最后更新时间 */ @TableField(value = "last_time") private String lastTime; /** * 排序 */ @TableField(value = "sort") private Integer sort; /** * 绑定参数类型(1环境参数 2运行参数) */ @TableField(value = "parameter_type") private Integer parameterType; }