/**
|
# __----~~~~~~~~~~~------___
|
# . . ~~//====...... __--~ ~~
|
# -. \_|// |||\\ ~~~~~~::::... /~
|
# ___-==_ _-~o~ \/ ||| \\ _/~~-
|
# __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~
|
# _-~~ .=~ | \\-_ '-~7 /- / || \ /
|
# .~ .~ | \\ -_ / /- / || \ /
|
# / ____ / | \\ ~-_/ /|- _/ .|| \ /
|
# |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\
|
# ' ~-| /| |-~\~~ __--~~
|
# |-~~-_/ | | ~\_ _-~ /\
|
# / \ \__ \/~ \__
|
# _--~ _/ | .-~~____--~-/ ~~==.
|
# ((->/~ '.|||' -_| ~~-/ , . _||
|
# -_ ~\ ~~---l__i__i__i--~~_/
|
# _-~-__ ~) \--______________--~~
|
# //.-~~~-~_--~- |-------~~~~~~~~
|
# //.-~~~--\
|
# 神兽保佑
|
# 永无BUG!
|
*/
|
package com.nanjing.water.entity.request.waterfacility;
|
|
import lombok.Data;
|
|
/**
|
* 设备信息
|
* @author lin.liu
|
*/
|
@Data
|
public class ReqCreateWaterFacility {
|
/**
|
* 设备名称
|
*/
|
private String facilityName;
|
/**
|
* 设备编号
|
*/
|
private String facilityCode;
|
/**
|
* 设备类型
|
*/
|
private Long facilityType;
|
/**
|
* 监控点id
|
*/
|
private Long pointId;
|
/**
|
* 安装日期
|
*/
|
private String installDate;
|
/**
|
* 是否在线
|
*/
|
private Integer isOnline;
|
/**
|
* 安装地址
|
*/
|
private String address;
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 设备图片
|
*/
|
private String facilityUrl;
|
/**
|
* 最新数据上报时间间隔(单位分钟)
|
*/
|
|
private Integer newIntervalTime;
|
/**
|
* 历史数据上报时间间隔(单位分钟)
|
*/
|
|
private Integer historyIntervalTime;
|
/**
|
* 水位采集时间间隔(单位分钟)
|
*/
|
|
private Integer gatherIntervalTime;
|
}
|