Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fill-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
fill-system
Commits
1c185a09
Commit
1c185a09
authored
Mar 24, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加设备相关
parent
b722847b
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
4004 additions
and
6958 deletions
+4004
-6958
common-lib/src/main/java/com/mortals/xhx/common/pdu/device/DevicePdu.java
...ain/java/com/mortals/xhx/common/pdu/device/DevicePdu.java
+29
-3834
fill-manager/db/module.sql
fill-manager/db/module.sql
+53
-0
fill-manager/src/main/java/com/mortals/xhx/daemon/task/SyncSiteDeviceTaskImpl.java
...a/com/mortals/xhx/daemon/task/SyncSiteDeviceTaskImpl.java
+116
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/DeviceDao.java
...ain/java/com/mortals/xhx/module/device/dao/DeviceDao.java
+2
-1
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/DeviceMatterDatumDao.java
...m/mortals/xhx/module/device/dao/DeviceMatterDatumDao.java
+17
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/ibatis/DeviceDaoImpl.java
...m/mortals/xhx/module/device/dao/ibatis/DeviceDaoImpl.java
+1
-1
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/ibatis/DeviceMatterDatumDaoImpl.java
...hx/module/device/dao/ibatis/DeviceMatterDatumDaoImpl.java
+20
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceEntity.java
...ava/com/mortals/xhx/module/device/model/DeviceEntity.java
+177
-638
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceMatterDatumEntity.java
...tals/xhx/module/device/model/DeviceMatterDatumEntity.java
+318
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceMatterDatumQuery.java
...rtals/xhx/module/device/model/DeviceMatterDatumQuery.java
+1816
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceQuery.java
...java/com/mortals/xhx/module/device/model/DeviceQuery.java
+1215
-2368
fill-manager/src/main/java/com/mortals/xhx/module/device/model/vo/DeviceMatterDatumVo.java
...rtals/xhx/module/device/model/vo/DeviceMatterDatumVo.java
+20
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/model/vo/DeviceVo.java
...java/com/mortals/xhx/module/device/model/vo/DeviceVo.java
+1
-49
fill-manager/src/main/java/com/mortals/xhx/module/device/service/DeviceMatterDatumService.java
...s/xhx/module/device/service/DeviceMatterDatumService.java
+19
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/service/DeviceService.java
.../com/mortals/xhx/module/device/service/DeviceService.java
+2
-7
fill-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceMatterDatumServiceImpl.java
...ule/device/service/impl/DeviceMatterDatumServiceImpl.java
+92
-0
fill-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceServiceImpl.java
...als/xhx/module/device/service/impl/DeviceServiceImpl.java
+14
-46
fill-manager/src/main/java/com/mortals/xhx/module/device/web/DeviceController.java
...a/com/mortals/xhx/module/device/web/DeviceController.java
+22
-14
fill-manager/src/main/java/com/mortals/xhx/module/device/web/DeviceMatterDatumController.java
...ls/xhx/module/device/web/DeviceMatterDatumController.java
+70
-0
No files found.
common-lib/src/main/java/com/mortals/xhx/common/pdu/device/DevicePdu.java
View file @
1c185a09
package
com.mortals.xhx.common.pdu.device
;
import
com.mortals.framework.model.BaseEntityLong
;
import
java.util.Date
;
import
java.util.List
;
import
lombok.Data
;
/**
* 设备Pdu对象
*
* @author zxfei
* @date 202
2-10-26
* @date 202
3-02-25
*/
@Data
public
class
DevicePdu
extends
BaseEntityLong
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备id
*/
private
Long
deviceId
;
/**
* 设备名称
*/
private
String
deviceName
;
/**
* 设备编码
,SN码等,默认为MAC地址
* 设备编码
*/
private
String
deviceCode
;
/**
...
...
@@ -28,7 +29,7 @@ public class DevicePdu extends BaseEntityLong {
*/
private
String
deviceMac
;
/**
* 站点Id
,来源基础服务平台
* 站点Id
*/
private
Long
siteId
;
/**
...
...
@@ -40,70 +41,26 @@ public class DevicePdu extends BaseEntityLong {
*/
private
String
siteName
;
/**
* 平台系统Id
*/
private
Long
platformId
;
/**
* 平台系统名称
*/
private
String
platformName
;
/**
* 产品Id
* 产品编码
*/
private
Long
productId
;
private
String
productCode
;
/**
* 产品名称
*/
private
String
productName
;
/**
* 皮肤id
*/
private
Long
skinId
;
/**
* 皮肤名称
*/
private
String
skinName
;
/**
* 首页地址
*/
private
String
homeUrl
;
/**
* 设备生产厂商ID
*/
private
Long
deviceFirmId
;
/**
* 设备生产厂商名称
*/
private
String
deviceFirmname
;
/**
* 设备来源(0.子设备,1.网关设备,2.直连设备)
*/
private
Integer
deviceSrc
;
/**
* 数据获取方式(0.主动上报,1.被动拉取)
*/
private
Integer
deviceDataSourceWay
;
/**
* 经度
*/
private
String
lon
;
/**
*
经
度
*
纬
度
*/
private
String
lati
;
/**
* 所属楼栋
*/
private
Integer
deviceInBuilding
;
/**
* 所属楼层
*/
private
Integer
deviceInFloor
;
/**
* 保修期至
*/
private
Date
defectsLiabilityPeriod
;
/**
* 负责人
*/
private
String
leadingOfficial
;
...
...
@@ -112,3814 +69,52 @@ public class DevicePdu extends BaseEntityLong {
*/
private
String
leadingOfficialTelephone
;
/**
* 是否接收异常短(0.否,1.是)
*/
private
Integer
isReceiveMess
;
/**
* 设备图片
*/
private
String
devicePhotoPath
;
/**
* 设备访问ip
*/
private
String
ip
;
/**
* 中心设备编码
*/
private
String
centernum
;
/**
* 端口
*/
private
String
port
;
/**
* 设备topic信息
*/
private
String
deviceTopic
;
/**
* 设备状态 (0.未激活,1.离线,2.在线)
*/
private
Integer
deviceStatus
;
/**
* 启用状态 (0.停止,1.启用)
*/
private
Integer
enabled
;
/**
* 设备授权码
*/
private
String
deviceAuthCode
;
/**
* 备注
*/
private
String
deviceRemark
;
/**
* 最近上线时间
*/
private
Date
onlineTime
;
/**
* 最近离线时间
*/
private
Date
offlineTime
;
/**
* 是否删除(0.否,1.是)
*/
private
Integer
deleted
;
/**
* 设备来源(0.旧设备,1.新设备)
*/
private
Integer
source
;
/**
* 设备SN码
*/
private
String
deviceSN
;
/** 开始 主键ID,主键,自增长 */
private
Long
idStart
;
/** 结束 主键ID,主键,自增长 */
private
Long
idEnd
;
/** 增加 主键ID,主键,自增长 */
private
Long
idIncrement
;
/** 主键ID,主键,自增长列表 */
private
List
<
Long
>
idList
;
/** 设备名称 */
private
List
<
String
>
deviceNameList
;
/** 设备编码,SN码等,默认为MAC地址 */
private
List
<
String
>
deviceCodeList
;
/** 设备的MAC地址 */
private
List
<
String
>
deviceMacList
;
/** 开始 站点Id,来源基础服务平台 */
private
Long
siteIdStart
;
/** 结束 站点Id,来源基础服务平台 */
private
Long
siteIdEnd
;
/** 增加 站点Id,来源基础服务平台 */
private
Long
siteIdIncrement
;
/** 站点Id,来源基础服务平台列表 */
private
List
<
Long
>
siteIdList
;
/** 站点编号,来源基础服务平台 */
private
List
<
String
>
siteCodeList
;
/** 站点名称 */
private
List
<
String
>
siteNameList
;
/** 开始 平台系统Id */
private
Long
platformIdStart
;
/** 结束 平台系统Id */
private
Long
platformIdEnd
;
/** 增加 平台系统Id */
private
Long
platformIdIncrement
;
/** 平台系统Id列表 */
private
List
<
Long
>
platformIdList
;
/** 平台系统名称 */
private
List
<
String
>
platformNameList
;
/** 开始 产品Id */
private
Long
productIdStart
;
/** 结束 产品Id */
private
Long
productIdEnd
;
/** 增加 产品Id */
private
Long
productIdIncrement
;
/** 产品Id列表 */
private
List
<
Long
>
productIdList
;
/** 产品名称 */
private
List
<
String
>
productNameList
;
/** 开始 皮肤id */
private
Long
skinIdStart
;
/** 结束 皮肤id */
private
Long
skinIdEnd
;
/** 增加 皮肤id */
private
Long
skinIdIncrement
;
/** 皮肤id列表 */
private
List
<
Long
>
skinIdList
;
/** 皮肤名称 */
private
List
<
String
>
skinNameList
;
/** 首页地址 */
private
List
<
String
>
homeUrlList
;
/** 开始 设备生产厂商ID */
private
Long
deviceFirmIdStart
;
/** 结束 设备生产厂商ID */
private
Long
deviceFirmIdEnd
;
/** 增加 设备生产厂商ID */
private
Long
deviceFirmIdIncrement
;
/** 设备生产厂商ID列表 */
private
List
<
Long
>
deviceFirmIdList
;
/** 设备生产厂商名称 */
private
List
<
String
>
deviceFirmnameList
;
/** 开始 设备来源(0.子设备,1.网关设备,2.直连设备) */
private
Integer
deviceSrcStart
;
/** 结束 设备来源(0.子设备,1.网关设备,2.直连设备) */
private
Integer
deviceSrcEnd
;
/** 增加 设备来源(0.子设备,1.网关设备,2.直连设备) */
private
Integer
deviceSrcIncrement
;
/** 设备来源(0.子设备,1.网关设备,2.直连设备)列表 */
private
List
<
Integer
>
deviceSrcList
;
/** 开始 数据获取方式(0.主动上报,1.被动拉取) */
private
Integer
deviceDataSourceWayStart
;
/** 结束 数据获取方式(0.主动上报,1.被动拉取) */
private
Integer
deviceDataSourceWayEnd
;
/** 增加 数据获取方式(0.主动上报,1.被动拉取) */
private
Integer
deviceDataSourceWayIncrement
;
/** 数据获取方式(0.主动上报,1.被动拉取)列表 */
private
List
<
Integer
>
deviceDataSourceWayList
;
/** 经度 */
private
List
<
String
>
lonList
;
/** 经度 */
private
List
<
String
>
latiList
;
/** 开始 所属楼栋 */
private
Integer
deviceInBuildingStart
;
/** 结束 所属楼栋 */
private
Integer
deviceInBuildingEnd
;
/** 增加 所属楼栋 */
private
Integer
deviceInBuildingIncrement
;
/** 所属楼栋列表 */
private
List
<
Integer
>
deviceInBuildingList
;
/** 开始 所属楼层 */
private
Integer
deviceInFloorStart
;
/** 结束 所属楼层 */
private
Integer
deviceInFloorEnd
;
/** 增加 所属楼层 */
private
Integer
deviceInFloorIncrement
;
/** 所属楼层列表 */
private
List
<
Integer
>
deviceInFloorList
;
/** 开始 保修期至 */
private
String
defectsLiabilityPeriodStart
;
/** 结束 保修期至 */
private
String
defectsLiabilityPeriodEnd
;
/** 负责人 */
private
List
<
String
>
leadingOfficialList
;
/** 联系电话 */
private
List
<
String
>
leadingOfficialTelephoneList
;
/** 开始 是否接收异常短(0.否,1.是) */
private
Integer
isReceiveMessStart
;
/** 结束 是否接收异常短(0.否,1.是) */
private
Integer
isReceiveMessEnd
;
/** 增加 是否接收异常短(0.否,1.是) */
private
Integer
isReceiveMessIncrement
;
/** 是否接收异常短(0.否,1.是)列表 */
private
List
<
Integer
>
isReceiveMessList
;
/** 设备图片 */
private
List
<
String
>
devicePhotoPathList
;
/** 设备访问ip */
private
List
<
String
>
ipList
;
/** 中心设备编码 */
private
List
<
String
>
centernumList
;
/** 端口 */
private
List
<
String
>
portList
;
/** 设备topic信息 */
private
List
<
String
>
deviceTopicList
;
/** 开始 设备状态 (0.未激活,1.离线,2.在线) */
private
Integer
deviceStatusStart
;
/** 结束 设备状态 (0.未激活,1.离线,2.在线) */
private
Integer
deviceStatusEnd
;
/** 增加 设备状态 (0.未激活,1.离线,2.在线) */
private
Integer
deviceStatusIncrement
;
/** 设备状态 (0.未激活,1.离线,2.在线)列表 */
private
List
<
Integer
>
deviceStatusList
;
/** 开始 启用状态 (0.停止,1.启用) */
private
Integer
enabledStart
;
/** 结束 启用状态 (0.停止,1.启用) */
private
Integer
enabledEnd
;
/** 增加 启用状态 (0.停止,1.启用) */
private
Integer
enabledIncrement
;
/** 启用状态 (0.停止,1.启用)列表 */
private
List
<
Integer
>
enabledList
;
/** 设备授权码 */
private
List
<
String
>
deviceAuthCodeList
;
/** 备注 */
private
List
<
String
>
deviceRemarkList
;
/** 开始 最近上线时间 */
private
String
onlineTimeStart
;
/** 结束 最近上线时间 */
private
String
onlineTimeEnd
;
public
void
initAttrValue
(){
/** 开始 最近离线时间 */
private
String
offlineTimeStart
;
this
.
deviceId
=
null
;
/** 结束 最近离线时间 */
private
String
offlineTimeEnd
;
this
.
deviceName
=
null
;
/** 开始 是否删除(0.否,1.是) */
private
Integer
deletedStart
;
this
.
deviceCode
=
null
;
/** 结束 是否删除(0.否,1.是) */
private
Integer
deletedEnd
;
this
.
deviceMac
=
null
;
/** 增加 是否删除(0.否,1.是) */
private
Integer
deletedIncrement
;
/** 是否删除(0.否,1.是)列表 */
private
List
<
Integer
>
deletedList
;
/** 开始 设备来源(0.旧设备,1.新设备) */
private
Integer
sourceStart
;
/** 结束 设备来源(0.旧设备,1.新设备) */
private
Integer
sourceEnd
;
/** 增加 设备来源(0.旧设备,1.新设备) */
private
Integer
sourceIncrement
;
/** 设备来源(0.旧设备,1.新设备)列表 */
private
List
<
Integer
>
sourceList
;
/** 开始 创建用户 */
private
Long
createUserIdStart
;
/** 结束 创建用户 */
private
Long
createUserIdEnd
;
/** 增加 创建用户 */
private
Long
createUserIdIncrement
;
/** 创建用户列表 */
private
List
<
Long
>
createUserIdList
;
/** 开始 创建时间 */
private
String
createTimeStart
;
this
.
siteId
=
null
;
/** 结束 创建时间 */
private
String
createTimeEnd
;
this
.
siteCode
=
null
;
/** 开始 更新用户 */
private
Long
updateUserIdStart
;
this
.
siteName
=
null
;
/** 结束 更新用户 */
private
Long
updateUserIdEnd
;
this
.
productCode
=
null
;
/** 增加 更新用户 */
private
Long
updateUserIdIncrement
;
this
.
productName
=
null
;
/** 更新用户列表 */
private
List
<
Long
>
updateUserIdList
;
this
.
deviceSrc
=
2
;
/** 开始 更新时间 */
private
String
updateTimeStart
;
this
.
lon
=
null
;
/** 结束 更新时间 */
private
String
updateTimeEnd
;
this
.
lati
=
null
;
/** 设备SN码 */
private
List
<
String
>
deviceSNList
;
this
.
leadingOfficial
=
null
;
this
.
leadingOfficialTelephone
=
null
;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private
List
<
DevicePdu
>
orConditionList
;
this
.
deviceStatus
=
null
;
/** AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) */
private
List
<
DevicePdu
>
andConditionList
;
public
DevicePdu
(){}
/**
* 获取 设备名称
* @return String
*/
public
String
getDeviceName
(){
return
deviceName
;
}
/**
* 设置 设备名称
* @param deviceName
*/
public
void
setDeviceName
(
String
deviceName
){
this
.
deviceName
=
deviceName
;
}
/**
* 获取 设备编码,SN码等,默认为MAC地址
* @return String
*/
public
String
getDeviceCode
(){
return
deviceCode
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* @param deviceCode
*/
public
void
setDeviceCode
(
String
deviceCode
){
this
.
deviceCode
=
deviceCode
;
}
/**
* 获取 设备的MAC地址
* @return String
*/
public
String
getDeviceMac
(){
return
deviceMac
;
}
/**
* 设置 设备的MAC地址
* @param deviceMac
*/
public
void
setDeviceMac
(
String
deviceMac
){
this
.
deviceMac
=
deviceMac
;
}
/**
* 获取 站点Id,来源基础服务平台
* @return Long
*/
public
Long
getSiteId
(){
return
siteId
;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteId
*/
public
void
setSiteId
(
Long
siteId
){
this
.
siteId
=
siteId
;
}
/**
* 获取 站点编号,来源基础服务平台
* @return String
*/
public
String
getSiteCode
(){
return
siteCode
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCode
*/
public
void
setSiteCode
(
String
siteCode
){
this
.
siteCode
=
siteCode
;
}
/**
* 获取 站点名称
* @return String
*/
public
String
getSiteName
(){
return
siteName
;
}
/**
* 设置 站点名称
* @param siteName
*/
public
void
setSiteName
(
String
siteName
){
this
.
siteName
=
siteName
;
}
/**
* 获取 平台系统Id
* @return Long
*/
public
Long
getPlatformId
(){
return
platformId
;
}
/**
* 设置 平台系统Id
* @param platformId
*/
public
void
setPlatformId
(
Long
platformId
){
this
.
platformId
=
platformId
;
}
/**
* 获取 平台系统名称
* @return String
*/
public
String
getPlatformName
(){
return
platformName
;
}
/**
* 设置 平台系统名称
* @param platformName
*/
public
void
setPlatformName
(
String
platformName
){
this
.
platformName
=
platformName
;
}
/**
* 获取 产品Id
* @return Long
*/
public
Long
getProductId
(){
return
productId
;
}
/**
* 设置 产品Id
* @param productId
*/
public
void
setProductId
(
Long
productId
){
this
.
productId
=
productId
;
}
/**
* 获取 产品名称
* @return String
*/
public
String
getProductName
(){
return
productName
;
}
/**
* 设置 产品名称
* @param productName
*/
public
void
setProductName
(
String
productName
){
this
.
productName
=
productName
;
}
/**
* 获取 皮肤id
* @return Long
*/
public
Long
getSkinId
(){
return
skinId
;
}
/**
* 设置 皮肤id
* @param skinId
*/
public
void
setSkinId
(
Long
skinId
){
this
.
skinId
=
skinId
;
}
/**
* 获取 皮肤名称
* @return String
*/
public
String
getSkinName
(){
return
skinName
;
}
/**
* 设置 皮肤名称
* @param skinName
*/
public
void
setSkinName
(
String
skinName
){
this
.
skinName
=
skinName
;
}
/**
* 获取 首页地址
* @return String
*/
public
String
getHomeUrl
(){
return
homeUrl
;
}
/**
* 设置 首页地址
* @param homeUrl
*/
public
void
setHomeUrl
(
String
homeUrl
){
this
.
homeUrl
=
homeUrl
;
}
/**
* 获取 设备生产厂商ID
* @return Long
*/
public
Long
getDeviceFirmId
(){
return
deviceFirmId
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmId
*/
public
void
setDeviceFirmId
(
Long
deviceFirmId
){
this
.
deviceFirmId
=
deviceFirmId
;
}
/**
* 获取 设备生产厂商名称
* @return String
*/
public
String
getDeviceFirmname
(){
return
deviceFirmname
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmname
*/
public
void
setDeviceFirmname
(
String
deviceFirmname
){
this
.
deviceFirmname
=
deviceFirmname
;
}
/**
* 获取 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return Integer
*/
public
Integer
getDeviceSrc
(){
return
deviceSrc
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrc
*/
public
void
setDeviceSrc
(
Integer
deviceSrc
){
this
.
deviceSrc
=
deviceSrc
;
}
/**
* 获取 数据获取方式(0.主动上报,1.被动拉取)
* @return Integer
*/
public
Integer
getDeviceDataSourceWay
(){
return
deviceDataSourceWay
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWay
*/
public
void
setDeviceDataSourceWay
(
Integer
deviceDataSourceWay
){
this
.
deviceDataSourceWay
=
deviceDataSourceWay
;
}
/**
* 获取 经度
* @return String
*/
public
String
getLon
(){
return
lon
;
}
/**
* 设置 经度
* @param lon
*/
public
void
setLon
(
String
lon
){
this
.
lon
=
lon
;
}
/**
* 获取 经度
* @return String
*/
public
String
getLati
(){
return
lati
;
}
/**
* 设置 经度
* @param lati
*/
public
void
setLati
(
String
lati
){
this
.
lati
=
lati
;
}
/**
* 获取 所属楼栋
* @return Integer
*/
public
Integer
getDeviceInBuilding
(){
return
deviceInBuilding
;
}
/**
* 设置 所属楼栋
* @param deviceInBuilding
*/
public
void
setDeviceInBuilding
(
Integer
deviceInBuilding
){
this
.
deviceInBuilding
=
deviceInBuilding
;
}
/**
* 获取 所属楼层
* @return Integer
*/
public
Integer
getDeviceInFloor
(){
return
deviceInFloor
;
}
/**
* 设置 所属楼层
* @param deviceInFloor
*/
public
void
setDeviceInFloor
(
Integer
deviceInFloor
){
this
.
deviceInFloor
=
deviceInFloor
;
}
/**
* 获取 保修期至
* @return Date
*/
public
Date
getDefectsLiabilityPeriod
(){
return
defectsLiabilityPeriod
;
}
/**
* 设置 保修期至
* @param defectsLiabilityPeriod
*/
public
void
setDefectsLiabilityPeriod
(
Date
defectsLiabilityPeriod
){
this
.
defectsLiabilityPeriod
=
defectsLiabilityPeriod
;
}
/**
* 获取 负责人
* @return String
*/
public
String
getLeadingOfficial
(){
return
leadingOfficial
;
}
/**
* 设置 负责人
* @param leadingOfficial
*/
public
void
setLeadingOfficial
(
String
leadingOfficial
){
this
.
leadingOfficial
=
leadingOfficial
;
}
/**
* 获取 联系电话
* @return String
*/
public
String
getLeadingOfficialTelephone
(){
return
leadingOfficialTelephone
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephone
*/
public
void
setLeadingOfficialTelephone
(
String
leadingOfficialTelephone
){
this
.
leadingOfficialTelephone
=
leadingOfficialTelephone
;
}
/**
* 获取 是否接收异常短(0.否,1.是)
* @return Integer
*/
public
Integer
getIsReceiveMess
(){
return
isReceiveMess
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMess
*/
public
void
setIsReceiveMess
(
Integer
isReceiveMess
){
this
.
isReceiveMess
=
isReceiveMess
;
}
/**
* 获取 设备图片
* @return String
*/
public
String
getDevicePhotoPath
(){
return
devicePhotoPath
;
}
/**
* 设置 设备图片
* @param devicePhotoPath
*/
public
void
setDevicePhotoPath
(
String
devicePhotoPath
){
this
.
devicePhotoPath
=
devicePhotoPath
;
}
/**
* 获取 设备访问ip
* @return String
*/
public
String
getIp
(){
return
ip
;
}
/**
* 设置 设备访问ip
* @param ip
*/
public
void
setIp
(
String
ip
){
this
.
ip
=
ip
;
}
/**
* 获取 中心设备编码
* @return String
*/
public
String
getCenternum
(){
return
centernum
;
}
/**
* 设置 中心设备编码
* @param centernum
*/
public
void
setCenternum
(
String
centernum
){
this
.
centernum
=
centernum
;
}
/**
* 获取 端口
* @return String
*/
public
String
getPort
(){
return
port
;
}
/**
* 设置 端口
* @param port
*/
public
void
setPort
(
String
port
){
this
.
port
=
port
;
}
/**
* 获取 设备topic信息
* @return String
*/
public
String
getDeviceTopic
(){
return
deviceTopic
;
}
/**
* 设置 设备topic信息
* @param deviceTopic
*/
public
void
setDeviceTopic
(
String
deviceTopic
){
this
.
deviceTopic
=
deviceTopic
;
}
/**
* 获取 设备状态 (0.未激活,1.离线,2.在线)
* @return Integer
*/
public
Integer
getDeviceStatus
(){
return
deviceStatus
;
}
/**
* 设置 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatus
*/
public
void
setDeviceStatus
(
Integer
deviceStatus
){
this
.
deviceStatus
=
deviceStatus
;
}
/**
* 获取 启用状态 (0.停止,1.启用)
* @return Integer
*/
public
Integer
getEnabled
(){
return
enabled
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabled
*/
public
void
setEnabled
(
Integer
enabled
){
this
.
enabled
=
enabled
;
}
/**
* 获取 设备授权码
* @return String
*/
public
String
getDeviceAuthCode
(){
return
deviceAuthCode
;
}
/**
* 设置 设备授权码
* @param deviceAuthCode
*/
public
void
setDeviceAuthCode
(
String
deviceAuthCode
){
this
.
deviceAuthCode
=
deviceAuthCode
;
}
/**
* 获取 备注
* @return String
*/
public
String
getDeviceRemark
(){
return
deviceRemark
;
}
/**
* 设置 备注
* @param deviceRemark
*/
public
void
setDeviceRemark
(
String
deviceRemark
){
this
.
deviceRemark
=
deviceRemark
;
}
/**
* 获取 最近上线时间
* @return Date
*/
public
Date
getOnlineTime
(){
return
onlineTime
;
}
/**
* 设置 最近上线时间
* @param onlineTime
*/
public
void
setOnlineTime
(
Date
onlineTime
){
this
.
onlineTime
=
onlineTime
;
}
/**
* 获取 最近离线时间
* @return Date
*/
public
Date
getOfflineTime
(){
return
offlineTime
;
}
/**
* 设置 最近离线时间
* @param offlineTime
*/
public
void
setOfflineTime
(
Date
offlineTime
){
this
.
offlineTime
=
offlineTime
;
}
/**
* 获取 是否删除(0.否,1.是)
* @return Integer
*/
public
Integer
getDeleted
(){
return
deleted
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deleted
*/
public
void
setDeleted
(
Integer
deleted
){
this
.
deleted
=
deleted
;
}
/**
* 获取 设备来源(0.旧设备,1.新设备)
* @return Integer
*/
public
Integer
getSource
(){
return
source
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param source
*/
public
void
setSource
(
Integer
source
){
this
.
source
=
source
;
}
/**
* 获取 设备SN码
* @return String
*/
public
String
getDeviceSN
(){
return
deviceSN
;
}
/**
* 设置 设备SN码
* @param deviceSN
*/
public
void
setDeviceSN
(
String
deviceSN
){
this
.
deviceSN
=
deviceSN
;
}
/**
* 获取 开始 主键ID,主键,自增长
* @return idStart
*/
public
Long
getIdStart
(){
return
this
.
idStart
;
}
/**
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
public
void
setIdStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
}
/**
* 获取 结束 主键ID,主键,自增长
* @return $idEnd
*/
public
Long
getIdEnd
(){
return
this
.
idEnd
;
}
/**
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
public
void
setIdEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
}
/**
* 获取 增加 主键ID,主键,自增长
* @return idIncrement
*/
public
Long
getIdIncrement
(){
return
this
.
idIncrement
;
}
/**
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
public
void
setIdIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
}
/**
* 获取 主键ID,主键,自增长
* @return idList
*/
public
List
<
Long
>
getIdList
(){
return
this
.
idList
;
}
/**
* 设置 主键ID,主键,自增长
* @param idList
*/
public
void
setIdList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
}
/**
* 获取 设备名称
* @return deviceNameList
*/
public
List
<
String
>
getDeviceNameList
(){
return
this
.
deviceNameList
;
}
/**
* 设置 设备名称
* @param deviceNameList
*/
public
void
setDeviceNameList
(
List
<
String
>
deviceNameList
){
this
.
deviceNameList
=
deviceNameList
;
}
/**
* 获取 设备编码,SN码等,默认为MAC地址
* @return deviceCodeList
*/
public
List
<
String
>
getDeviceCodeList
(){
return
this
.
deviceCodeList
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* @param deviceCodeList
*/
public
void
setDeviceCodeList
(
List
<
String
>
deviceCodeList
){
this
.
deviceCodeList
=
deviceCodeList
;
}
/**
* 获取 设备的MAC地址
* @return deviceMacList
*/
public
List
<
String
>
getDeviceMacList
(){
return
this
.
deviceMacList
;
}
/**
* 设置 设备的MAC地址
* @param deviceMacList
*/
public
void
setDeviceMacList
(
List
<
String
>
deviceMacList
){
this
.
deviceMacList
=
deviceMacList
;
}
/**
* 获取 开始 站点Id,来源基础服务平台
* @return siteIdStart
*/
public
Long
getSiteIdStart
(){
return
this
.
siteIdStart
;
}
/**
* 设置 开始 站点Id,来源基础服务平台
* @param siteIdStart
*/
public
void
setSiteIdStart
(
Long
siteIdStart
){
this
.
siteIdStart
=
siteIdStart
;
}
/**
* 获取 结束 站点Id,来源基础服务平台
* @return $siteIdEnd
*/
public
Long
getSiteIdEnd
(){
return
this
.
siteIdEnd
;
}
/**
* 设置 结束 站点Id,来源基础服务平台
* @param siteIdEnd
*/
public
void
setSiteIdEnd
(
Long
siteIdEnd
){
this
.
siteIdEnd
=
siteIdEnd
;
}
/**
* 获取 增加 站点Id,来源基础服务平台
* @return siteIdIncrement
*/
public
Long
getSiteIdIncrement
(){
return
this
.
siteIdIncrement
;
}
/**
* 设置 增加 站点Id,来源基础服务平台
* @param siteIdIncrement
*/
public
void
setSiteIdIncrement
(
Long
siteIdIncrement
){
this
.
siteIdIncrement
=
siteIdIncrement
;
}
/**
* 获取 站点Id,来源基础服务平台
* @return siteIdList
*/
public
List
<
Long
>
getSiteIdList
(){
return
this
.
siteIdList
;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdList
*/
public
void
setSiteIdList
(
List
<
Long
>
siteIdList
){
this
.
siteIdList
=
siteIdList
;
}
/**
* 获取 站点编号,来源基础服务平台
* @return siteCodeList
*/
public
List
<
String
>
getSiteCodeList
(){
return
this
.
siteCodeList
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeList
*/
public
void
setSiteCodeList
(
List
<
String
>
siteCodeList
){
this
.
siteCodeList
=
siteCodeList
;
}
/**
* 获取 站点名称
* @return siteNameList
*/
public
List
<
String
>
getSiteNameList
(){
return
this
.
siteNameList
;
}
/**
* 设置 站点名称
* @param siteNameList
*/
public
void
setSiteNameList
(
List
<
String
>
siteNameList
){
this
.
siteNameList
=
siteNameList
;
}
/**
* 获取 开始 平台系统Id
* @return platformIdStart
*/
public
Long
getPlatformIdStart
(){
return
this
.
platformIdStart
;
}
/**
* 设置 开始 平台系统Id
* @param platformIdStart
*/
public
void
setPlatformIdStart
(
Long
platformIdStart
){
this
.
platformIdStart
=
platformIdStart
;
}
/**
* 获取 结束 平台系统Id
* @return $platformIdEnd
*/
public
Long
getPlatformIdEnd
(){
return
this
.
platformIdEnd
;
}
/**
* 设置 结束 平台系统Id
* @param platformIdEnd
*/
public
void
setPlatformIdEnd
(
Long
platformIdEnd
){
this
.
platformIdEnd
=
platformIdEnd
;
}
/**
* 获取 增加 平台系统Id
* @return platformIdIncrement
*/
public
Long
getPlatformIdIncrement
(){
return
this
.
platformIdIncrement
;
}
/**
* 设置 增加 平台系统Id
* @param platformIdIncrement
*/
public
void
setPlatformIdIncrement
(
Long
platformIdIncrement
){
this
.
platformIdIncrement
=
platformIdIncrement
;
}
/**
* 获取 平台系统Id
* @return platformIdList
*/
public
List
<
Long
>
getPlatformIdList
(){
return
this
.
platformIdList
;
}
/**
* 设置 平台系统Id
* @param platformIdList
*/
public
void
setPlatformIdList
(
List
<
Long
>
platformIdList
){
this
.
platformIdList
=
platformIdList
;
}
/**
* 获取 平台系统名称
* @return platformNameList
*/
public
List
<
String
>
getPlatformNameList
(){
return
this
.
platformNameList
;
}
/**
* 设置 平台系统名称
* @param platformNameList
*/
public
void
setPlatformNameList
(
List
<
String
>
platformNameList
){
this
.
platformNameList
=
platformNameList
;
}
/**
* 获取 开始 产品Id
* @return productIdStart
*/
public
Long
getProductIdStart
(){
return
this
.
productIdStart
;
}
/**
* 设置 开始 产品Id
* @param productIdStart
*/
public
void
setProductIdStart
(
Long
productIdStart
){
this
.
productIdStart
=
productIdStart
;
}
/**
* 获取 结束 产品Id
* @return $productIdEnd
*/
public
Long
getProductIdEnd
(){
return
this
.
productIdEnd
;
}
/**
* 设置 结束 产品Id
* @param productIdEnd
*/
public
void
setProductIdEnd
(
Long
productIdEnd
){
this
.
productIdEnd
=
productIdEnd
;
}
/**
* 获取 增加 产品Id
* @return productIdIncrement
*/
public
Long
getProductIdIncrement
(){
return
this
.
productIdIncrement
;
}
/**
* 设置 增加 产品Id
* @param productIdIncrement
*/
public
void
setProductIdIncrement
(
Long
productIdIncrement
){
this
.
productIdIncrement
=
productIdIncrement
;
}
/**
* 获取 产品Id
* @return productIdList
*/
public
List
<
Long
>
getProductIdList
(){
return
this
.
productIdList
;
}
/**
* 设置 产品Id
* @param productIdList
*/
public
void
setProductIdList
(
List
<
Long
>
productIdList
){
this
.
productIdList
=
productIdList
;
}
/**
* 获取 产品名称
* @return productNameList
*/
public
List
<
String
>
getProductNameList
(){
return
this
.
productNameList
;
}
/**
* 设置 产品名称
* @param productNameList
*/
public
void
setProductNameList
(
List
<
String
>
productNameList
){
this
.
productNameList
=
productNameList
;
}
/**
* 获取 开始 皮肤id
* @return skinIdStart
*/
public
Long
getSkinIdStart
(){
return
this
.
skinIdStart
;
}
/**
* 设置 开始 皮肤id
* @param skinIdStart
*/
public
void
setSkinIdStart
(
Long
skinIdStart
){
this
.
skinIdStart
=
skinIdStart
;
}
/**
* 获取 结束 皮肤id
* @return $skinIdEnd
*/
public
Long
getSkinIdEnd
(){
return
this
.
skinIdEnd
;
}
/**
* 设置 结束 皮肤id
* @param skinIdEnd
*/
public
void
setSkinIdEnd
(
Long
skinIdEnd
){
this
.
skinIdEnd
=
skinIdEnd
;
}
/**
* 获取 增加 皮肤id
* @return skinIdIncrement
*/
public
Long
getSkinIdIncrement
(){
return
this
.
skinIdIncrement
;
}
/**
* 设置 增加 皮肤id
* @param skinIdIncrement
*/
public
void
setSkinIdIncrement
(
Long
skinIdIncrement
){
this
.
skinIdIncrement
=
skinIdIncrement
;
}
/**
* 获取 皮肤id
* @return skinIdList
*/
public
List
<
Long
>
getSkinIdList
(){
return
this
.
skinIdList
;
}
/**
* 设置 皮肤id
* @param skinIdList
*/
public
void
setSkinIdList
(
List
<
Long
>
skinIdList
){
this
.
skinIdList
=
skinIdList
;
}
/**
* 获取 皮肤名称
* @return skinNameList
*/
public
List
<
String
>
getSkinNameList
(){
return
this
.
skinNameList
;
}
/**
* 设置 皮肤名称
* @param skinNameList
*/
public
void
setSkinNameList
(
List
<
String
>
skinNameList
){
this
.
skinNameList
=
skinNameList
;
}
/**
* 获取 首页地址
* @return homeUrlList
*/
public
List
<
String
>
getHomeUrlList
(){
return
this
.
homeUrlList
;
}
/**
* 设置 首页地址
* @param homeUrlList
*/
public
void
setHomeUrlList
(
List
<
String
>
homeUrlList
){
this
.
homeUrlList
=
homeUrlList
;
}
/**
* 获取 开始 设备生产厂商ID
* @return deviceFirmIdStart
*/
public
Long
getDeviceFirmIdStart
(){
return
this
.
deviceFirmIdStart
;
}
/**
* 设置 开始 设备生产厂商ID
* @param deviceFirmIdStart
*/
public
void
setDeviceFirmIdStart
(
Long
deviceFirmIdStart
){
this
.
deviceFirmIdStart
=
deviceFirmIdStart
;
}
/**
* 获取 结束 设备生产厂商ID
* @return $deviceFirmIdEnd
*/
public
Long
getDeviceFirmIdEnd
(){
return
this
.
deviceFirmIdEnd
;
}
/**
* 设置 结束 设备生产厂商ID
* @param deviceFirmIdEnd
*/
public
void
setDeviceFirmIdEnd
(
Long
deviceFirmIdEnd
){
this
.
deviceFirmIdEnd
=
deviceFirmIdEnd
;
}
/**
* 获取 增加 设备生产厂商ID
* @return deviceFirmIdIncrement
*/
public
Long
getDeviceFirmIdIncrement
(){
return
this
.
deviceFirmIdIncrement
;
}
/**
* 设置 增加 设备生产厂商ID
* @param deviceFirmIdIncrement
*/
public
void
setDeviceFirmIdIncrement
(
Long
deviceFirmIdIncrement
){
this
.
deviceFirmIdIncrement
=
deviceFirmIdIncrement
;
}
/**
* 获取 设备生产厂商ID
* @return deviceFirmIdList
*/
public
List
<
Long
>
getDeviceFirmIdList
(){
return
this
.
deviceFirmIdList
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmIdList
*/
public
void
setDeviceFirmIdList
(
List
<
Long
>
deviceFirmIdList
){
this
.
deviceFirmIdList
=
deviceFirmIdList
;
}
/**
* 获取 设备生产厂商名称
* @return deviceFirmnameList
*/
public
List
<
String
>
getDeviceFirmnameList
(){
return
this
.
deviceFirmnameList
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmnameList
*/
public
void
setDeviceFirmnameList
(
List
<
String
>
deviceFirmnameList
){
this
.
deviceFirmnameList
=
deviceFirmnameList
;
}
/**
* 获取 开始 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrcStart
*/
public
Integer
getDeviceSrcStart
(){
return
this
.
deviceSrcStart
;
}
/**
* 设置 开始 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcStart
*/
public
void
setDeviceSrcStart
(
Integer
deviceSrcStart
){
this
.
deviceSrcStart
=
deviceSrcStart
;
}
/**
* 获取 结束 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return $deviceSrcEnd
*/
public
Integer
getDeviceSrcEnd
(){
return
this
.
deviceSrcEnd
;
}
/**
* 设置 结束 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcEnd
*/
public
void
setDeviceSrcEnd
(
Integer
deviceSrcEnd
){
this
.
deviceSrcEnd
=
deviceSrcEnd
;
}
/**
* 获取 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrcIncrement
*/
public
Integer
getDeviceSrcIncrement
(){
return
this
.
deviceSrcIncrement
;
}
/**
* 设置 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcIncrement
*/
public
void
setDeviceSrcIncrement
(
Integer
deviceSrcIncrement
){
this
.
deviceSrcIncrement
=
deviceSrcIncrement
;
}
/**
* 获取 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrcList
*/
public
List
<
Integer
>
getDeviceSrcList
(){
return
this
.
deviceSrcList
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcList
*/
public
void
setDeviceSrcList
(
List
<
Integer
>
deviceSrcList
){
this
.
deviceSrcList
=
deviceSrcList
;
}
/**
* 获取 开始 数据获取方式(0.主动上报,1.被动拉取)
* @return deviceDataSourceWayStart
*/
public
Integer
getDeviceDataSourceWayStart
(){
return
this
.
deviceDataSourceWayStart
;
}
/**
* 设置 开始 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayStart
*/
public
void
setDeviceDataSourceWayStart
(
Integer
deviceDataSourceWayStart
){
this
.
deviceDataSourceWayStart
=
deviceDataSourceWayStart
;
}
/**
* 获取 结束 数据获取方式(0.主动上报,1.被动拉取)
* @return $deviceDataSourceWayEnd
*/
public
Integer
getDeviceDataSourceWayEnd
(){
return
this
.
deviceDataSourceWayEnd
;
}
/**
* 设置 结束 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayEnd
*/
public
void
setDeviceDataSourceWayEnd
(
Integer
deviceDataSourceWayEnd
){
this
.
deviceDataSourceWayEnd
=
deviceDataSourceWayEnd
;
}
/**
* 获取 增加 数据获取方式(0.主动上报,1.被动拉取)
* @return deviceDataSourceWayIncrement
*/
public
Integer
getDeviceDataSourceWayIncrement
(){
return
this
.
deviceDataSourceWayIncrement
;
}
/**
* 设置 增加 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayIncrement
*/
public
void
setDeviceDataSourceWayIncrement
(
Integer
deviceDataSourceWayIncrement
){
this
.
deviceDataSourceWayIncrement
=
deviceDataSourceWayIncrement
;
}
/**
* 获取 数据获取方式(0.主动上报,1.被动拉取)
* @return deviceDataSourceWayList
*/
public
List
<
Integer
>
getDeviceDataSourceWayList
(){
return
this
.
deviceDataSourceWayList
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayList
*/
public
void
setDeviceDataSourceWayList
(
List
<
Integer
>
deviceDataSourceWayList
){
this
.
deviceDataSourceWayList
=
deviceDataSourceWayList
;
}
/**
* 获取 经度
* @return lonList
*/
public
List
<
String
>
getLonList
(){
return
this
.
lonList
;
}
/**
* 设置 经度
* @param lonList
*/
public
void
setLonList
(
List
<
String
>
lonList
){
this
.
lonList
=
lonList
;
}
/**
* 获取 经度
* @return latiList
*/
public
List
<
String
>
getLatiList
(){
return
this
.
latiList
;
}
/**
* 设置 经度
* @param latiList
*/
public
void
setLatiList
(
List
<
String
>
latiList
){
this
.
latiList
=
latiList
;
}
/**
* 获取 开始 所属楼栋
* @return deviceInBuildingStart
*/
public
Integer
getDeviceInBuildingStart
(){
return
this
.
deviceInBuildingStart
;
}
/**
* 设置 开始 所属楼栋
* @param deviceInBuildingStart
*/
public
void
setDeviceInBuildingStart
(
Integer
deviceInBuildingStart
){
this
.
deviceInBuildingStart
=
deviceInBuildingStart
;
}
/**
* 获取 结束 所属楼栋
* @return $deviceInBuildingEnd
*/
public
Integer
getDeviceInBuildingEnd
(){
return
this
.
deviceInBuildingEnd
;
}
/**
* 设置 结束 所属楼栋
* @param deviceInBuildingEnd
*/
public
void
setDeviceInBuildingEnd
(
Integer
deviceInBuildingEnd
){
this
.
deviceInBuildingEnd
=
deviceInBuildingEnd
;
}
/**
* 获取 增加 所属楼栋
* @return deviceInBuildingIncrement
*/
public
Integer
getDeviceInBuildingIncrement
(){
return
this
.
deviceInBuildingIncrement
;
}
/**
* 设置 增加 所属楼栋
* @param deviceInBuildingIncrement
*/
public
void
setDeviceInBuildingIncrement
(
Integer
deviceInBuildingIncrement
){
this
.
deviceInBuildingIncrement
=
deviceInBuildingIncrement
;
}
/**
* 获取 所属楼栋
* @return deviceInBuildingList
*/
public
List
<
Integer
>
getDeviceInBuildingList
(){
return
this
.
deviceInBuildingList
;
}
/**
* 设置 所属楼栋
* @param deviceInBuildingList
*/
public
void
setDeviceInBuildingList
(
List
<
Integer
>
deviceInBuildingList
){
this
.
deviceInBuildingList
=
deviceInBuildingList
;
}
/**
* 获取 开始 所属楼层
* @return deviceInFloorStart
*/
public
Integer
getDeviceInFloorStart
(){
return
this
.
deviceInFloorStart
;
}
/**
* 设置 开始 所属楼层
* @param deviceInFloorStart
*/
public
void
setDeviceInFloorStart
(
Integer
deviceInFloorStart
){
this
.
deviceInFloorStart
=
deviceInFloorStart
;
}
/**
* 获取 结束 所属楼层
* @return $deviceInFloorEnd
*/
public
Integer
getDeviceInFloorEnd
(){
return
this
.
deviceInFloorEnd
;
}
/**
* 设置 结束 所属楼层
* @param deviceInFloorEnd
*/
public
void
setDeviceInFloorEnd
(
Integer
deviceInFloorEnd
){
this
.
deviceInFloorEnd
=
deviceInFloorEnd
;
}
/**
* 获取 增加 所属楼层
* @return deviceInFloorIncrement
*/
public
Integer
getDeviceInFloorIncrement
(){
return
this
.
deviceInFloorIncrement
;
}
/**
* 设置 增加 所属楼层
* @param deviceInFloorIncrement
*/
public
void
setDeviceInFloorIncrement
(
Integer
deviceInFloorIncrement
){
this
.
deviceInFloorIncrement
=
deviceInFloorIncrement
;
}
/**
* 获取 所属楼层
* @return deviceInFloorList
*/
public
List
<
Integer
>
getDeviceInFloorList
(){
return
this
.
deviceInFloorList
;
}
/**
* 设置 所属楼层
* @param deviceInFloorList
*/
public
void
setDeviceInFloorList
(
List
<
Integer
>
deviceInFloorList
){
this
.
deviceInFloorList
=
deviceInFloorList
;
}
/**
* 获取 开始 保修期至
* @return defectsLiabilityPeriodStart
*/
public
String
getDefectsLiabilityPeriodStart
(){
return
this
.
defectsLiabilityPeriodStart
;
}
/**
* 设置 开始 保修期至
* @param defectsLiabilityPeriodStart
*/
public
void
setDefectsLiabilityPeriodStart
(
String
defectsLiabilityPeriodStart
){
this
.
defectsLiabilityPeriodStart
=
defectsLiabilityPeriodStart
;
}
/**
* 获取 结束 保修期至
* @return defectsLiabilityPeriodEnd
*/
public
String
getDefectsLiabilityPeriodEnd
(){
return
this
.
defectsLiabilityPeriodEnd
;
}
/**
* 设置 结束 保修期至
* @param defectsLiabilityPeriodEnd
*/
public
void
setDefectsLiabilityPeriodEnd
(
String
defectsLiabilityPeriodEnd
){
this
.
defectsLiabilityPeriodEnd
=
defectsLiabilityPeriodEnd
;
}
/**
* 获取 负责人
* @return leadingOfficialList
*/
public
List
<
String
>
getLeadingOfficialList
(){
return
this
.
leadingOfficialList
;
}
/**
* 设置 负责人
* @param leadingOfficialList
*/
public
void
setLeadingOfficialList
(
List
<
String
>
leadingOfficialList
){
this
.
leadingOfficialList
=
leadingOfficialList
;
}
/**
* 获取 联系电话
* @return leadingOfficialTelephoneList
*/
public
List
<
String
>
getLeadingOfficialTelephoneList
(){
return
this
.
leadingOfficialTelephoneList
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephoneList
*/
public
void
setLeadingOfficialTelephoneList
(
List
<
String
>
leadingOfficialTelephoneList
){
this
.
leadingOfficialTelephoneList
=
leadingOfficialTelephoneList
;
}
/**
* 获取 开始 是否接收异常短(0.否,1.是)
* @return isReceiveMessStart
*/
public
Integer
getIsReceiveMessStart
(){
return
this
.
isReceiveMessStart
;
}
/**
* 设置 开始 是否接收异常短(0.否,1.是)
* @param isReceiveMessStart
*/
public
void
setIsReceiveMessStart
(
Integer
isReceiveMessStart
){
this
.
isReceiveMessStart
=
isReceiveMessStart
;
}
/**
* 获取 结束 是否接收异常短(0.否,1.是)
* @return $isReceiveMessEnd
*/
public
Integer
getIsReceiveMessEnd
(){
return
this
.
isReceiveMessEnd
;
}
/**
* 设置 结束 是否接收异常短(0.否,1.是)
* @param isReceiveMessEnd
*/
public
void
setIsReceiveMessEnd
(
Integer
isReceiveMessEnd
){
this
.
isReceiveMessEnd
=
isReceiveMessEnd
;
}
/**
* 获取 增加 是否接收异常短(0.否,1.是)
* @return isReceiveMessIncrement
*/
public
Integer
getIsReceiveMessIncrement
(){
return
this
.
isReceiveMessIncrement
;
}
/**
* 设置 增加 是否接收异常短(0.否,1.是)
* @param isReceiveMessIncrement
*/
public
void
setIsReceiveMessIncrement
(
Integer
isReceiveMessIncrement
){
this
.
isReceiveMessIncrement
=
isReceiveMessIncrement
;
}
/**
* 获取 是否接收异常短(0.否,1.是)
* @return isReceiveMessList
*/
public
List
<
Integer
>
getIsReceiveMessList
(){
return
this
.
isReceiveMessList
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMessList
*/
public
void
setIsReceiveMessList
(
List
<
Integer
>
isReceiveMessList
){
this
.
isReceiveMessList
=
isReceiveMessList
;
}
/**
* 获取 设备图片
* @return devicePhotoPathList
*/
public
List
<
String
>
getDevicePhotoPathList
(){
return
this
.
devicePhotoPathList
;
}
/**
* 设置 设备图片
* @param devicePhotoPathList
*/
public
void
setDevicePhotoPathList
(
List
<
String
>
devicePhotoPathList
){
this
.
devicePhotoPathList
=
devicePhotoPathList
;
}
/**
* 获取 设备访问ip
* @return ipList
*/
public
List
<
String
>
getIpList
(){
return
this
.
ipList
;
}
/**
* 设置 设备访问ip
* @param ipList
*/
public
void
setIpList
(
List
<
String
>
ipList
){
this
.
ipList
=
ipList
;
}
/**
* 获取 中心设备编码
* @return centernumList
*/
public
List
<
String
>
getCenternumList
(){
return
this
.
centernumList
;
}
/**
* 设置 中心设备编码
* @param centernumList
*/
public
void
setCenternumList
(
List
<
String
>
centernumList
){
this
.
centernumList
=
centernumList
;
}
/**
* 获取 端口
* @return portList
*/
public
List
<
String
>
getPortList
(){
return
this
.
portList
;
}
/**
* 设置 端口
* @param portList
*/
public
void
setPortList
(
List
<
String
>
portList
){
this
.
portList
=
portList
;
}
/**
* 获取 设备topic信息
* @return deviceTopicList
*/
public
List
<
String
>
getDeviceTopicList
(){
return
this
.
deviceTopicList
;
}
/**
* 设置 设备topic信息
* @param deviceTopicList
*/
public
void
setDeviceTopicList
(
List
<
String
>
deviceTopicList
){
this
.
deviceTopicList
=
deviceTopicList
;
}
/**
* 获取 开始 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusStart
*/
public
Integer
getDeviceStatusStart
(){
return
this
.
deviceStatusStart
;
}
/**
* 设置 开始 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusStart
*/
public
void
setDeviceStatusStart
(
Integer
deviceStatusStart
){
this
.
deviceStatusStart
=
deviceStatusStart
;
}
/**
* 获取 结束 设备状态 (0.未激活,1.离线,2.在线)
* @return $deviceStatusEnd
*/
public
Integer
getDeviceStatusEnd
(){
return
this
.
deviceStatusEnd
;
}
/**
* 设置 结束 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusEnd
*/
public
void
setDeviceStatusEnd
(
Integer
deviceStatusEnd
){
this
.
deviceStatusEnd
=
deviceStatusEnd
;
}
/**
* 获取 增加 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusIncrement
*/
public
Integer
getDeviceStatusIncrement
(){
return
this
.
deviceStatusIncrement
;
}
/**
* 设置 增加 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusIncrement
*/
public
void
setDeviceStatusIncrement
(
Integer
deviceStatusIncrement
){
this
.
deviceStatusIncrement
=
deviceStatusIncrement
;
}
/**
* 获取 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusList
*/
public
List
<
Integer
>
getDeviceStatusList
(){
return
this
.
deviceStatusList
;
}
/**
* 设置 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusList
*/
public
void
setDeviceStatusList
(
List
<
Integer
>
deviceStatusList
){
this
.
deviceStatusList
=
deviceStatusList
;
}
/**
* 获取 开始 启用状态 (0.停止,1.启用)
* @return enabledStart
*/
public
Integer
getEnabledStart
(){
return
this
.
enabledStart
;
}
/**
* 设置 开始 启用状态 (0.停止,1.启用)
* @param enabledStart
*/
public
void
setEnabledStart
(
Integer
enabledStart
){
this
.
enabledStart
=
enabledStart
;
}
/**
* 获取 结束 启用状态 (0.停止,1.启用)
* @return $enabledEnd
*/
public
Integer
getEnabledEnd
(){
return
this
.
enabledEnd
;
}
/**
* 设置 结束 启用状态 (0.停止,1.启用)
* @param enabledEnd
*/
public
void
setEnabledEnd
(
Integer
enabledEnd
){
this
.
enabledEnd
=
enabledEnd
;
}
/**
* 获取 增加 启用状态 (0.停止,1.启用)
* @return enabledIncrement
*/
public
Integer
getEnabledIncrement
(){
return
this
.
enabledIncrement
;
}
/**
* 设置 增加 启用状态 (0.停止,1.启用)
* @param enabledIncrement
*/
public
void
setEnabledIncrement
(
Integer
enabledIncrement
){
this
.
enabledIncrement
=
enabledIncrement
;
}
/**
* 获取 启用状态 (0.停止,1.启用)
* @return enabledList
*/
public
List
<
Integer
>
getEnabledList
(){
return
this
.
enabledList
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabledList
*/
public
void
setEnabledList
(
List
<
Integer
>
enabledList
){
this
.
enabledList
=
enabledList
;
}
/**
* 获取 设备授权码
* @return deviceAuthCodeList
*/
public
List
<
String
>
getDeviceAuthCodeList
(){
return
this
.
deviceAuthCodeList
;
}
/**
* 设置 设备授权码
* @param deviceAuthCodeList
*/
public
void
setDeviceAuthCodeList
(
List
<
String
>
deviceAuthCodeList
){
this
.
deviceAuthCodeList
=
deviceAuthCodeList
;
}
/**
* 获取 备注
* @return deviceRemarkList
*/
public
List
<
String
>
getDeviceRemarkList
(){
return
this
.
deviceRemarkList
;
}
/**
* 设置 备注
* @param deviceRemarkList
*/
public
void
setDeviceRemarkList
(
List
<
String
>
deviceRemarkList
){
this
.
deviceRemarkList
=
deviceRemarkList
;
}
/**
* 获取 开始 最近上线时间
* @return onlineTimeStart
*/
public
String
getOnlineTimeStart
(){
return
this
.
onlineTimeStart
;
}
/**
* 设置 开始 最近上线时间
* @param onlineTimeStart
*/
public
void
setOnlineTimeStart
(
String
onlineTimeStart
){
this
.
onlineTimeStart
=
onlineTimeStart
;
}
/**
* 获取 结束 最近上线时间
* @return onlineTimeEnd
*/
public
String
getOnlineTimeEnd
(){
return
this
.
onlineTimeEnd
;
}
/**
* 设置 结束 最近上线时间
* @param onlineTimeEnd
*/
public
void
setOnlineTimeEnd
(
String
onlineTimeEnd
){
this
.
onlineTimeEnd
=
onlineTimeEnd
;
}
/**
* 获取 开始 最近离线时间
* @return offlineTimeStart
*/
public
String
getOfflineTimeStart
(){
return
this
.
offlineTimeStart
;
}
/**
* 设置 开始 最近离线时间
* @param offlineTimeStart
*/
public
void
setOfflineTimeStart
(
String
offlineTimeStart
){
this
.
offlineTimeStart
=
offlineTimeStart
;
}
/**
* 获取 结束 最近离线时间
* @return offlineTimeEnd
*/
public
String
getOfflineTimeEnd
(){
return
this
.
offlineTimeEnd
;
}
/**
* 设置 结束 最近离线时间
* @param offlineTimeEnd
*/
public
void
setOfflineTimeEnd
(
String
offlineTimeEnd
){
this
.
offlineTimeEnd
=
offlineTimeEnd
;
}
/**
* 获取 开始 是否删除(0.否,1.是)
* @return deletedStart
*/
public
Integer
getDeletedStart
(){
return
this
.
deletedStart
;
}
/**
* 设置 开始 是否删除(0.否,1.是)
* @param deletedStart
*/
public
void
setDeletedStart
(
Integer
deletedStart
){
this
.
deletedStart
=
deletedStart
;
}
/**
* 获取 结束 是否删除(0.否,1.是)
* @return $deletedEnd
*/
public
Integer
getDeletedEnd
(){
return
this
.
deletedEnd
;
}
/**
* 设置 结束 是否删除(0.否,1.是)
* @param deletedEnd
*/
public
void
setDeletedEnd
(
Integer
deletedEnd
){
this
.
deletedEnd
=
deletedEnd
;
}
/**
* 获取 增加 是否删除(0.否,1.是)
* @return deletedIncrement
*/
public
Integer
getDeletedIncrement
(){
return
this
.
deletedIncrement
;
}
/**
* 设置 增加 是否删除(0.否,1.是)
* @param deletedIncrement
*/
public
void
setDeletedIncrement
(
Integer
deletedIncrement
){
this
.
deletedIncrement
=
deletedIncrement
;
}
/**
* 获取 是否删除(0.否,1.是)
* @return deletedList
*/
public
List
<
Integer
>
getDeletedList
(){
return
this
.
deletedList
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deletedList
*/
public
void
setDeletedList
(
List
<
Integer
>
deletedList
){
this
.
deletedList
=
deletedList
;
}
/**
* 获取 开始 设备来源(0.旧设备,1.新设备)
* @return sourceStart
*/
public
Integer
getSourceStart
(){
return
this
.
sourceStart
;
}
/**
* 设置 开始 设备来源(0.旧设备,1.新设备)
* @param sourceStart
*/
public
void
setSourceStart
(
Integer
sourceStart
){
this
.
sourceStart
=
sourceStart
;
}
/**
* 获取 结束 设备来源(0.旧设备,1.新设备)
* @return $sourceEnd
*/
public
Integer
getSourceEnd
(){
return
this
.
sourceEnd
;
}
/**
* 设置 结束 设备来源(0.旧设备,1.新设备)
* @param sourceEnd
*/
public
void
setSourceEnd
(
Integer
sourceEnd
){
this
.
sourceEnd
=
sourceEnd
;
}
/**
* 获取 增加 设备来源(0.旧设备,1.新设备)
* @return sourceIncrement
*/
public
Integer
getSourceIncrement
(){
return
this
.
sourceIncrement
;
}
/**
* 设置 增加 设备来源(0.旧设备,1.新设备)
* @param sourceIncrement
*/
public
void
setSourceIncrement
(
Integer
sourceIncrement
){
this
.
sourceIncrement
=
sourceIncrement
;
}
/**
* 获取 设备来源(0.旧设备,1.新设备)
* @return sourceList
*/
public
List
<
Integer
>
getSourceList
(){
return
this
.
sourceList
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param sourceList
*/
public
void
setSourceList
(
List
<
Integer
>
sourceList
){
this
.
sourceList
=
sourceList
;
}
/**
* 获取 开始 创建用户
* @return createUserIdStart
*/
public
Long
getCreateUserIdStart
(){
return
this
.
createUserIdStart
;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
}
/**
* 获取 结束 创建用户
* @return $createUserIdEnd
*/
public
Long
getCreateUserIdEnd
(){
return
this
.
createUserIdEnd
;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
}
/**
* 获取 增加 创建用户
* @return createUserIdIncrement
*/
public
Long
getCreateUserIdIncrement
(){
return
this
.
createUserIdIncrement
;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
/**
* 获取 创建用户
* @return createUserIdList
*/
public
List
<
Long
>
getCreateUserIdList
(){
return
this
.
createUserIdList
;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
}
/**
* 获取 开始 创建时间
* @return createTimeStart
*/
public
String
getCreateTimeStart
(){
return
this
.
createTimeStart
;
}
/**
* 设置 开始 创建时间
* @param createTimeStart
*/
public
void
setCreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStart
;
}
/**
* 获取 结束 创建时间
* @return createTimeEnd
*/
public
String
getCreateTimeEnd
(){
return
this
.
createTimeEnd
;
}
/**
* 设置 结束 创建时间
* @param createTimeEnd
*/
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
}
/**
* 获取 开始 更新用户
* @return updateUserIdStart
*/
public
Long
getUpdateUserIdStart
(){
return
this
.
updateUserIdStart
;
}
/**
* 设置 开始 更新用户
* @param updateUserIdStart
*/
public
void
setUpdateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
}
/**
* 获取 结束 更新用户
* @return $updateUserIdEnd
*/
public
Long
getUpdateUserIdEnd
(){
return
this
.
updateUserIdEnd
;
}
/**
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
public
void
setUpdateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
}
/**
* 获取 增加 更新用户
* @return updateUserIdIncrement
*/
public
Long
getUpdateUserIdIncrement
(){
return
this
.
updateUserIdIncrement
;
}
/**
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
public
void
setUpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
}
/**
* 获取 更新用户
* @return updateUserIdList
*/
public
List
<
Long
>
getUpdateUserIdList
(){
return
this
.
updateUserIdList
;
}
/**
* 设置 更新用户
* @param updateUserIdList
*/
public
void
setUpdateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
}
/**
* 获取 开始 更新时间
* @return updateTimeStart
*/
public
String
getUpdateTimeStart
(){
return
this
.
updateTimeStart
;
}
/**
* 设置 开始 更新时间
* @param updateTimeStart
*/
public
void
setUpdateTimeStart
(
String
updateTimeStart
){
this
.
updateTimeStart
=
updateTimeStart
;
}
/**
* 获取 结束 更新时间
* @return updateTimeEnd
*/
public
String
getUpdateTimeEnd
(){
return
this
.
updateTimeEnd
;
}
/**
* 设置 结束 更新时间
* @param updateTimeEnd
*/
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
}
/**
* 获取 设备SN码
* @return deviceSNList
*/
public
List
<
String
>
getDeviceSNList
(){
return
this
.
deviceSNList
;
}
/**
* 设置 设备SN码
* @param deviceSNList
*/
public
void
setDeviceSNList
(
List
<
String
>
deviceSNList
){
this
.
deviceSNList
=
deviceSNList
;
}
/**
* 设置 主键ID,主键,自增长
* @param id
*/
public
DevicePdu
id
(
Long
id
){
setId
(
id
);
return
this
;
}
/**
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
public
DevicePdu
idStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
return
this
;
}
/**
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
public
DevicePdu
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
return
this
;
}
/**
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
public
DevicePdu
idIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
return
this
;
}
/**
* 设置 主键ID,主键,自增长
* @param idList
*/
public
DevicePdu
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
return
this
;
}
/**
* 设置 设备名称
* @param deviceName
*/
public
DevicePdu
deviceName
(
String
deviceName
){
setDeviceName
(
deviceName
);
return
this
;
}
/**
* 设置 设备名称
* @param deviceNameList
*/
public
DevicePdu
deviceNameList
(
List
<
String
>
deviceNameList
){
this
.
deviceNameList
=
deviceNameList
;
return
this
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* @param deviceCode
*/
public
DevicePdu
deviceCode
(
String
deviceCode
){
setDeviceCode
(
deviceCode
);
return
this
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* @param deviceCodeList
*/
public
DevicePdu
deviceCodeList
(
List
<
String
>
deviceCodeList
){
this
.
deviceCodeList
=
deviceCodeList
;
return
this
;
}
/**
* 设置 设备的MAC地址
* @param deviceMac
*/
public
DevicePdu
deviceMac
(
String
deviceMac
){
setDeviceMac
(
deviceMac
);
return
this
;
}
/**
* 设置 设备的MAC地址
* @param deviceMacList
*/
public
DevicePdu
deviceMacList
(
List
<
String
>
deviceMacList
){
this
.
deviceMacList
=
deviceMacList
;
return
this
;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteId
*/
public
DevicePdu
siteId
(
Long
siteId
){
setSiteId
(
siteId
);
return
this
;
}
/**
* 设置 开始 站点Id,来源基础服务平台
* @param siteIdStart
*/
public
DevicePdu
siteIdStart
(
Long
siteIdStart
){
this
.
siteIdStart
=
siteIdStart
;
return
this
;
}
/**
* 设置 结束 站点Id,来源基础服务平台
* @param siteIdEnd
*/
public
DevicePdu
siteIdEnd
(
Long
siteIdEnd
){
this
.
siteIdEnd
=
siteIdEnd
;
return
this
;
}
/**
* 设置 增加 站点Id,来源基础服务平台
* @param siteIdIncrement
*/
public
DevicePdu
siteIdIncrement
(
Long
siteIdIncrement
){
this
.
siteIdIncrement
=
siteIdIncrement
;
return
this
;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdList
*/
public
DevicePdu
siteIdList
(
List
<
Long
>
siteIdList
){
this
.
siteIdList
=
siteIdList
;
return
this
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCode
*/
public
DevicePdu
siteCode
(
String
siteCode
){
setSiteCode
(
siteCode
);
return
this
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeList
*/
public
DevicePdu
siteCodeList
(
List
<
String
>
siteCodeList
){
this
.
siteCodeList
=
siteCodeList
;
return
this
;
}
/**
* 设置 站点名称
* @param siteName
*/
public
DevicePdu
siteName
(
String
siteName
){
setSiteName
(
siteName
);
return
this
;
}
/**
* 设置 站点名称
* @param siteNameList
*/
public
DevicePdu
siteNameList
(
List
<
String
>
siteNameList
){
this
.
siteNameList
=
siteNameList
;
return
this
;
}
/**
* 设置 平台系统Id
* @param platformId
*/
public
DevicePdu
platformId
(
Long
platformId
){
setPlatformId
(
platformId
);
return
this
;
}
/**
* 设置 开始 平台系统Id
* @param platformIdStart
*/
public
DevicePdu
platformIdStart
(
Long
platformIdStart
){
this
.
platformIdStart
=
platformIdStart
;
return
this
;
}
/**
* 设置 结束 平台系统Id
* @param platformIdEnd
*/
public
DevicePdu
platformIdEnd
(
Long
platformIdEnd
){
this
.
platformIdEnd
=
platformIdEnd
;
return
this
;
}
/**
* 设置 增加 平台系统Id
* @param platformIdIncrement
*/
public
DevicePdu
platformIdIncrement
(
Long
platformIdIncrement
){
this
.
platformIdIncrement
=
platformIdIncrement
;
return
this
;
}
/**
* 设置 平台系统Id
* @param platformIdList
*/
public
DevicePdu
platformIdList
(
List
<
Long
>
platformIdList
){
this
.
platformIdList
=
platformIdList
;
return
this
;
}
/**
* 设置 平台系统名称
* @param platformName
*/
public
DevicePdu
platformName
(
String
platformName
){
setPlatformName
(
platformName
);
return
this
;
}
/**
* 设置 平台系统名称
* @param platformNameList
*/
public
DevicePdu
platformNameList
(
List
<
String
>
platformNameList
){
this
.
platformNameList
=
platformNameList
;
return
this
;
}
/**
* 设置 产品Id
* @param productId
*/
public
DevicePdu
productId
(
Long
productId
){
setProductId
(
productId
);
return
this
;
}
/**
* 设置 开始 产品Id
* @param productIdStart
*/
public
DevicePdu
productIdStart
(
Long
productIdStart
){
this
.
productIdStart
=
productIdStart
;
return
this
;
}
/**
* 设置 结束 产品Id
* @param productIdEnd
*/
public
DevicePdu
productIdEnd
(
Long
productIdEnd
){
this
.
productIdEnd
=
productIdEnd
;
return
this
;
}
/**
* 设置 增加 产品Id
* @param productIdIncrement
*/
public
DevicePdu
productIdIncrement
(
Long
productIdIncrement
){
this
.
productIdIncrement
=
productIdIncrement
;
return
this
;
}
/**
* 设置 产品Id
* @param productIdList
*/
public
DevicePdu
productIdList
(
List
<
Long
>
productIdList
){
this
.
productIdList
=
productIdList
;
return
this
;
}
/**
* 设置 产品名称
* @param productName
*/
public
DevicePdu
productName
(
String
productName
){
setProductName
(
productName
);
return
this
;
}
/**
* 设置 产品名称
* @param productNameList
*/
public
DevicePdu
productNameList
(
List
<
String
>
productNameList
){
this
.
productNameList
=
productNameList
;
return
this
;
}
/**
* 设置 皮肤id
* @param skinId
*/
public
DevicePdu
skinId
(
Long
skinId
){
setSkinId
(
skinId
);
return
this
;
}
/**
* 设置 开始 皮肤id
* @param skinIdStart
*/
public
DevicePdu
skinIdStart
(
Long
skinIdStart
){
this
.
skinIdStart
=
skinIdStart
;
return
this
;
}
/**
* 设置 结束 皮肤id
* @param skinIdEnd
*/
public
DevicePdu
skinIdEnd
(
Long
skinIdEnd
){
this
.
skinIdEnd
=
skinIdEnd
;
return
this
;
}
/**
* 设置 增加 皮肤id
* @param skinIdIncrement
*/
public
DevicePdu
skinIdIncrement
(
Long
skinIdIncrement
){
this
.
skinIdIncrement
=
skinIdIncrement
;
return
this
;
}
/**
* 设置 皮肤id
* @param skinIdList
*/
public
DevicePdu
skinIdList
(
List
<
Long
>
skinIdList
){
this
.
skinIdList
=
skinIdList
;
return
this
;
}
/**
* 设置 皮肤名称
* @param skinName
*/
public
DevicePdu
skinName
(
String
skinName
){
setSkinName
(
skinName
);
return
this
;
}
/**
* 设置 皮肤名称
* @param skinNameList
*/
public
DevicePdu
skinNameList
(
List
<
String
>
skinNameList
){
this
.
skinNameList
=
skinNameList
;
return
this
;
}
/**
* 设置 首页地址
* @param homeUrl
*/
public
DevicePdu
homeUrl
(
String
homeUrl
){
setHomeUrl
(
homeUrl
);
return
this
;
}
/**
* 设置 首页地址
* @param homeUrlList
*/
public
DevicePdu
homeUrlList
(
List
<
String
>
homeUrlList
){
this
.
homeUrlList
=
homeUrlList
;
return
this
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmId
*/
public
DevicePdu
deviceFirmId
(
Long
deviceFirmId
){
setDeviceFirmId
(
deviceFirmId
);
return
this
;
}
/**
* 设置 开始 设备生产厂商ID
* @param deviceFirmIdStart
*/
public
DevicePdu
deviceFirmIdStart
(
Long
deviceFirmIdStart
){
this
.
deviceFirmIdStart
=
deviceFirmIdStart
;
return
this
;
}
/**
* 设置 结束 设备生产厂商ID
* @param deviceFirmIdEnd
*/
public
DevicePdu
deviceFirmIdEnd
(
Long
deviceFirmIdEnd
){
this
.
deviceFirmIdEnd
=
deviceFirmIdEnd
;
return
this
;
}
/**
* 设置 增加 设备生产厂商ID
* @param deviceFirmIdIncrement
*/
public
DevicePdu
deviceFirmIdIncrement
(
Long
deviceFirmIdIncrement
){
this
.
deviceFirmIdIncrement
=
deviceFirmIdIncrement
;
return
this
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmIdList
*/
public
DevicePdu
deviceFirmIdList
(
List
<
Long
>
deviceFirmIdList
){
this
.
deviceFirmIdList
=
deviceFirmIdList
;
return
this
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmname
*/
public
DevicePdu
deviceFirmname
(
String
deviceFirmname
){
setDeviceFirmname
(
deviceFirmname
);
return
this
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmnameList
*/
public
DevicePdu
deviceFirmnameList
(
List
<
String
>
deviceFirmnameList
){
this
.
deviceFirmnameList
=
deviceFirmnameList
;
return
this
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrc
*/
public
DevicePdu
deviceSrc
(
Integer
deviceSrc
){
setDeviceSrc
(
deviceSrc
);
return
this
;
}
/**
* 设置 开始 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcStart
*/
public
DevicePdu
deviceSrcStart
(
Integer
deviceSrcStart
){
this
.
deviceSrcStart
=
deviceSrcStart
;
return
this
;
}
/**
* 设置 结束 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcEnd
*/
public
DevicePdu
deviceSrcEnd
(
Integer
deviceSrcEnd
){
this
.
deviceSrcEnd
=
deviceSrcEnd
;
return
this
;
}
/**
* 设置 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcIncrement
*/
public
DevicePdu
deviceSrcIncrement
(
Integer
deviceSrcIncrement
){
this
.
deviceSrcIncrement
=
deviceSrcIncrement
;
return
this
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcList
*/
public
DevicePdu
deviceSrcList
(
List
<
Integer
>
deviceSrcList
){
this
.
deviceSrcList
=
deviceSrcList
;
return
this
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWay
*/
public
DevicePdu
deviceDataSourceWay
(
Integer
deviceDataSourceWay
){
setDeviceDataSourceWay
(
deviceDataSourceWay
);
return
this
;
}
/**
* 设置 开始 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayStart
*/
public
DevicePdu
deviceDataSourceWayStart
(
Integer
deviceDataSourceWayStart
){
this
.
deviceDataSourceWayStart
=
deviceDataSourceWayStart
;
return
this
;
}
/**
* 设置 结束 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayEnd
*/
public
DevicePdu
deviceDataSourceWayEnd
(
Integer
deviceDataSourceWayEnd
){
this
.
deviceDataSourceWayEnd
=
deviceDataSourceWayEnd
;
return
this
;
}
/**
* 设置 增加 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayIncrement
*/
public
DevicePdu
deviceDataSourceWayIncrement
(
Integer
deviceDataSourceWayIncrement
){
this
.
deviceDataSourceWayIncrement
=
deviceDataSourceWayIncrement
;
return
this
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayList
*/
public
DevicePdu
deviceDataSourceWayList
(
List
<
Integer
>
deviceDataSourceWayList
){
this
.
deviceDataSourceWayList
=
deviceDataSourceWayList
;
return
this
;
}
/**
* 设置 经度
* @param lon
*/
public
DevicePdu
lon
(
String
lon
){
setLon
(
lon
);
return
this
;
}
/**
* 设置 经度
* @param lonList
*/
public
DevicePdu
lonList
(
List
<
String
>
lonList
){
this
.
lonList
=
lonList
;
return
this
;
}
/**
* 设置 经度
* @param lati
*/
public
DevicePdu
lati
(
String
lati
){
setLati
(
lati
);
return
this
;
}
/**
* 设置 经度
* @param latiList
*/
public
DevicePdu
latiList
(
List
<
String
>
latiList
){
this
.
latiList
=
latiList
;
return
this
;
}
/**
* 设置 所属楼栋
* @param deviceInBuilding
*/
public
DevicePdu
deviceInBuilding
(
Integer
deviceInBuilding
){
setDeviceInBuilding
(
deviceInBuilding
);
return
this
;
}
/**
* 设置 开始 所属楼栋
* @param deviceInBuildingStart
*/
public
DevicePdu
deviceInBuildingStart
(
Integer
deviceInBuildingStart
){
this
.
deviceInBuildingStart
=
deviceInBuildingStart
;
return
this
;
}
/**
* 设置 结束 所属楼栋
* @param deviceInBuildingEnd
*/
public
DevicePdu
deviceInBuildingEnd
(
Integer
deviceInBuildingEnd
){
this
.
deviceInBuildingEnd
=
deviceInBuildingEnd
;
return
this
;
}
/**
* 设置 增加 所属楼栋
* @param deviceInBuildingIncrement
*/
public
DevicePdu
deviceInBuildingIncrement
(
Integer
deviceInBuildingIncrement
){
this
.
deviceInBuildingIncrement
=
deviceInBuildingIncrement
;
return
this
;
}
/**
* 设置 所属楼栋
* @param deviceInBuildingList
*/
public
DevicePdu
deviceInBuildingList
(
List
<
Integer
>
deviceInBuildingList
){
this
.
deviceInBuildingList
=
deviceInBuildingList
;
return
this
;
}
/**
* 设置 所属楼层
* @param deviceInFloor
*/
public
DevicePdu
deviceInFloor
(
Integer
deviceInFloor
){
setDeviceInFloor
(
deviceInFloor
);
return
this
;
}
/**
* 设置 开始 所属楼层
* @param deviceInFloorStart
*/
public
DevicePdu
deviceInFloorStart
(
Integer
deviceInFloorStart
){
this
.
deviceInFloorStart
=
deviceInFloorStart
;
return
this
;
}
/**
* 设置 结束 所属楼层
* @param deviceInFloorEnd
*/
public
DevicePdu
deviceInFloorEnd
(
Integer
deviceInFloorEnd
){
this
.
deviceInFloorEnd
=
deviceInFloorEnd
;
return
this
;
}
/**
* 设置 增加 所属楼层
* @param deviceInFloorIncrement
*/
public
DevicePdu
deviceInFloorIncrement
(
Integer
deviceInFloorIncrement
){
this
.
deviceInFloorIncrement
=
deviceInFloorIncrement
;
return
this
;
}
/**
* 设置 所属楼层
* @param deviceInFloorList
*/
public
DevicePdu
deviceInFloorList
(
List
<
Integer
>
deviceInFloorList
){
this
.
deviceInFloorList
=
deviceInFloorList
;
return
this
;
}
/**
* 设置 负责人
* @param leadingOfficial
*/
public
DevicePdu
leadingOfficial
(
String
leadingOfficial
){
setLeadingOfficial
(
leadingOfficial
);
return
this
;
}
/**
* 设置 负责人
* @param leadingOfficialList
*/
public
DevicePdu
leadingOfficialList
(
List
<
String
>
leadingOfficialList
){
this
.
leadingOfficialList
=
leadingOfficialList
;
return
this
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephone
*/
public
DevicePdu
leadingOfficialTelephone
(
String
leadingOfficialTelephone
){
setLeadingOfficialTelephone
(
leadingOfficialTelephone
);
return
this
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephoneList
*/
public
DevicePdu
leadingOfficialTelephoneList
(
List
<
String
>
leadingOfficialTelephoneList
){
this
.
leadingOfficialTelephoneList
=
leadingOfficialTelephoneList
;
return
this
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMess
*/
public
DevicePdu
isReceiveMess
(
Integer
isReceiveMess
){
setIsReceiveMess
(
isReceiveMess
);
return
this
;
}
/**
* 设置 开始 是否接收异常短(0.否,1.是)
* @param isReceiveMessStart
*/
public
DevicePdu
isReceiveMessStart
(
Integer
isReceiveMessStart
){
this
.
isReceiveMessStart
=
isReceiveMessStart
;
return
this
;
}
/**
* 设置 结束 是否接收异常短(0.否,1.是)
* @param isReceiveMessEnd
*/
public
DevicePdu
isReceiveMessEnd
(
Integer
isReceiveMessEnd
){
this
.
isReceiveMessEnd
=
isReceiveMessEnd
;
return
this
;
}
/**
* 设置 增加 是否接收异常短(0.否,1.是)
* @param isReceiveMessIncrement
*/
public
DevicePdu
isReceiveMessIncrement
(
Integer
isReceiveMessIncrement
){
this
.
isReceiveMessIncrement
=
isReceiveMessIncrement
;
return
this
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMessList
*/
public
DevicePdu
isReceiveMessList
(
List
<
Integer
>
isReceiveMessList
){
this
.
isReceiveMessList
=
isReceiveMessList
;
return
this
;
}
/**
* 设置 设备图片
* @param devicePhotoPath
*/
public
DevicePdu
devicePhotoPath
(
String
devicePhotoPath
){
setDevicePhotoPath
(
devicePhotoPath
);
return
this
;
}
/**
* 设置 设备图片
* @param devicePhotoPathList
*/
public
DevicePdu
devicePhotoPathList
(
List
<
String
>
devicePhotoPathList
){
this
.
devicePhotoPathList
=
devicePhotoPathList
;
return
this
;
}
/**
* 设置 设备访问ip
* @param ip
*/
public
DevicePdu
ip
(
String
ip
){
setIp
(
ip
);
return
this
;
}
/**
* 设置 设备访问ip
* @param ipList
*/
public
DevicePdu
ipList
(
List
<
String
>
ipList
){
this
.
ipList
=
ipList
;
return
this
;
}
/**
* 设置 中心设备编码
* @param centernum
*/
public
DevicePdu
centernum
(
String
centernum
){
setCenternum
(
centernum
);
return
this
;
}
/**
* 设置 中心设备编码
* @param centernumList
*/
public
DevicePdu
centernumList
(
List
<
String
>
centernumList
){
this
.
centernumList
=
centernumList
;
return
this
;
}
/**
* 设置 端口
* @param port
*/
public
DevicePdu
port
(
String
port
){
setPort
(
port
);
return
this
;
}
/**
* 设置 端口
* @param portList
*/
public
DevicePdu
portList
(
List
<
String
>
portList
){
this
.
portList
=
portList
;
return
this
;
}
/**
* 设置 设备topic信息
* @param deviceTopic
*/
public
DevicePdu
deviceTopic
(
String
deviceTopic
){
setDeviceTopic
(
deviceTopic
);
return
this
;
}
/**
* 设置 设备topic信息
* @param deviceTopicList
*/
public
DevicePdu
deviceTopicList
(
List
<
String
>
deviceTopicList
){
this
.
deviceTopicList
=
deviceTopicList
;
return
this
;
}
/**
* 设置 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatus
*/
public
DevicePdu
deviceStatus
(
Integer
deviceStatus
){
setDeviceStatus
(
deviceStatus
);
return
this
;
}
/**
* 设置 开始 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusStart
*/
public
DevicePdu
deviceStatusStart
(
Integer
deviceStatusStart
){
this
.
deviceStatusStart
=
deviceStatusStart
;
return
this
;
}
/**
* 设置 结束 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusEnd
*/
public
DevicePdu
deviceStatusEnd
(
Integer
deviceStatusEnd
){
this
.
deviceStatusEnd
=
deviceStatusEnd
;
return
this
;
}
/**
* 设置 增加 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusIncrement
*/
public
DevicePdu
deviceStatusIncrement
(
Integer
deviceStatusIncrement
){
this
.
deviceStatusIncrement
=
deviceStatusIncrement
;
return
this
;
}
/**
* 设置 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusList
*/
public
DevicePdu
deviceStatusList
(
List
<
Integer
>
deviceStatusList
){
this
.
deviceStatusList
=
deviceStatusList
;
return
this
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabled
*/
public
DevicePdu
enabled
(
Integer
enabled
){
setEnabled
(
enabled
);
return
this
;
}
/**
* 设置 开始 启用状态 (0.停止,1.启用)
* @param enabledStart
*/
public
DevicePdu
enabledStart
(
Integer
enabledStart
){
this
.
enabledStart
=
enabledStart
;
return
this
;
}
/**
* 设置 结束 启用状态 (0.停止,1.启用)
* @param enabledEnd
*/
public
DevicePdu
enabledEnd
(
Integer
enabledEnd
){
this
.
enabledEnd
=
enabledEnd
;
return
this
;
}
/**
* 设置 增加 启用状态 (0.停止,1.启用)
* @param enabledIncrement
*/
public
DevicePdu
enabledIncrement
(
Integer
enabledIncrement
){
this
.
enabledIncrement
=
enabledIncrement
;
return
this
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabledList
*/
public
DevicePdu
enabledList
(
List
<
Integer
>
enabledList
){
this
.
enabledList
=
enabledList
;
return
this
;
}
/**
* 设置 设备授权码
* @param deviceAuthCode
*/
public
DevicePdu
deviceAuthCode
(
String
deviceAuthCode
){
setDeviceAuthCode
(
deviceAuthCode
);
return
this
;
}
/**
* 设置 设备授权码
* @param deviceAuthCodeList
*/
public
DevicePdu
deviceAuthCodeList
(
List
<
String
>
deviceAuthCodeList
){
this
.
deviceAuthCodeList
=
deviceAuthCodeList
;
return
this
;
}
/**
* 设置 备注
* @param deviceRemark
*/
public
DevicePdu
deviceRemark
(
String
deviceRemark
){
setDeviceRemark
(
deviceRemark
);
return
this
;
}
/**
* 设置 备注
* @param deviceRemarkList
*/
public
DevicePdu
deviceRemarkList
(
List
<
String
>
deviceRemarkList
){
this
.
deviceRemarkList
=
deviceRemarkList
;
return
this
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deleted
*/
public
DevicePdu
deleted
(
Integer
deleted
){
setDeleted
(
deleted
);
return
this
;
}
/**
* 设置 开始 是否删除(0.否,1.是)
* @param deletedStart
*/
public
DevicePdu
deletedStart
(
Integer
deletedStart
){
this
.
deletedStart
=
deletedStart
;
return
this
;
}
/**
* 设置 结束 是否删除(0.否,1.是)
* @param deletedEnd
*/
public
DevicePdu
deletedEnd
(
Integer
deletedEnd
){
this
.
deletedEnd
=
deletedEnd
;
return
this
;
}
/**
* 设置 增加 是否删除(0.否,1.是)
* @param deletedIncrement
*/
public
DevicePdu
deletedIncrement
(
Integer
deletedIncrement
){
this
.
deletedIncrement
=
deletedIncrement
;
return
this
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deletedList
*/
public
DevicePdu
deletedList
(
List
<
Integer
>
deletedList
){
this
.
deletedList
=
deletedList
;
return
this
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param source
*/
public
DevicePdu
source
(
Integer
source
){
setSource
(
source
);
return
this
;
}
/**
* 设置 开始 设备来源(0.旧设备,1.新设备)
* @param sourceStart
*/
public
DevicePdu
sourceStart
(
Integer
sourceStart
){
this
.
sourceStart
=
sourceStart
;
return
this
;
}
/**
* 设置 结束 设备来源(0.旧设备,1.新设备)
* @param sourceEnd
*/
public
DevicePdu
sourceEnd
(
Integer
sourceEnd
){
this
.
sourceEnd
=
sourceEnd
;
return
this
;
}
/**
* 设置 增加 设备来源(0.旧设备,1.新设备)
* @param sourceIncrement
*/
public
DevicePdu
sourceIncrement
(
Integer
sourceIncrement
){
this
.
sourceIncrement
=
sourceIncrement
;
return
this
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param sourceList
*/
public
DevicePdu
sourceList
(
List
<
Integer
>
sourceList
){
this
.
sourceList
=
sourceList
;
return
this
;
}
/**
* 设置 创建用户
* @param createUserId
*/
public
DevicePdu
createUserId
(
Long
createUserId
){
setCreateUserId
(
createUserId
);
return
this
;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
public
DevicePdu
createUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
return
this
;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public
DevicePdu
createUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
return
this
;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public
DevicePdu
createUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
return
this
;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
public
DevicePdu
createUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
return
this
;
}
/**
* 设置 更新用户
* @param updateUserId
*/
public
DevicePdu
updateUserId
(
Long
updateUserId
){
setUpdateUserId
(
updateUserId
);
return
this
;
}
/**
* 设置 开始 更新用户
* @param updateUserIdStart
*/
public
DevicePdu
updateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
return
this
;
}
/**
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
public
DevicePdu
updateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
return
this
;
}
/**
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
public
DevicePdu
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
return
this
;
}
/**
* 设置 更新用户
* @param updateUserIdList
*/
public
DevicePdu
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
return
this
;
}
/**
* 设置 设备SN码
* @param deviceSN
*/
public
DevicePdu
deviceSN
(
String
deviceSN
){
setDeviceSN
(
deviceSN
);
return
this
;
}
/**
* 设置 设备SN码
* @param deviceSNList
*/
public
DevicePdu
deviceSNList
(
List
<
String
>
deviceSNList
){
this
.
deviceSNList
=
deviceSNList
;
return
this
;
}
/**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList
*/
public
List
<
DevicePdu
>
getOrConditionList
(){
return
this
.
orConditionList
;
}
/**
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @param orConditionList
*/
public
void
setOrConditionList
(
List
<
DevicePdu
>
orConditionList
){
this
.
orConditionList
=
orConditionList
;
}
/**
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList
*/
public
List
<
DevicePdu
>
getAndConditionList
(){
return
this
.
andConditionList
;
}
/**
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList
*/
public
void
setAndConditionList
(
List
<
DevicePdu
>
andConditionList
){
this
.
andConditionList
=
andConditionList
;
}
@Override
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
}
@Override
public
boolean
equals
(
Object
obj
)
{
if
(
obj
==
null
)
return
false
;
if
(
obj
instanceof
DevicePdu
)
{
DevicePdu
tmp
=
(
DevicePdu
)
obj
;
if
(
this
.
getId
()
==
tmp
.
getId
())
{
return
true
;
}
}
return
false
;
}
public
void
initAttrValue
(){
this
.
deviceName
=
""
;
this
.
deviceCode
=
""
;
this
.
deviceMac
=
""
;
this
.
siteId
=
null
;
this
.
siteCode
=
""
;
this
.
siteName
=
""
;
this
.
platformId
=
null
;
this
.
platformName
=
""
;
this
.
productId
=
null
;
this
.
productName
=
""
;
this
.
skinId
=
null
;
this
.
skinName
=
""
;
this
.
homeUrl
=
""
;
this
.
deviceFirmId
=
null
;
this
.
deviceFirmname
=
""
;
this
.
deviceSrc
=
2
;
this
.
deviceDataSourceWay
=
0
;
this
.
lon
=
""
;
this
.
lati
=
""
;
this
.
deviceInBuilding
=
null
;
this
.
deviceInFloor
=
null
;
this
.
defectsLiabilityPeriod
=
null
;
this
.
leadingOfficial
=
""
;
this
.
leadingOfficialTelephone
=
""
;
this
.
isReceiveMess
=
0
;
this
.
devicePhotoPath
=
""
;
this
.
ip
=
""
;
this
.
centernum
=
""
;
this
.
port
=
""
;
this
.
deviceTopic
=
""
;
this
.
deviceStatus
=
0
;
this
.
enabled
=
0
;
this
.
deviceAuthCode
=
""
;
this
.
deviceRemark
=
""
;
this
.
onlineTime
=
null
;
this
.
offlineTime
=
null
;
this
.
deleted
=
0
;
this
.
deviceRemark
=
null
;
this
.
source
=
1
;
this
.
deviceSN
=
""
;
}
}
\ No newline at end of file
fill-manager/db/module.sql
View file @
1c185a09
...
...
@@ -247,7 +247,60 @@ CREATE TABLE mortals_xhx_matter_datum_print(
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'打印提交'
;
-- ----------------------------
-- 设备表
-- ----------------------------
DROP
TABLE
IF
EXISTS
`mortals_xhx_device`
;
CREATE
TABLE
`mortals_xhx_device`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键ID,主键,自增长'
,
`deviceId`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'设备id'
,
`deviceName`
varchar
(
20
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
COMMENT
'设备名称'
,
`deviceCode`
varchar
(
256
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'设备编码'
,
`deviceMac`
varchar
(
64
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'设备的MAC地址'
,
`siteId`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'站点Id'
,
`siteCode`
varchar
(
256
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'站点编号,来源基础服务平台'
,
`siteName`
varchar
(
256
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'站点名称'
,
`productCode`
varchar
(
256
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'产品编码'
,
`productName`
varchar
(
256
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'产品名称'
,
`deviceSrc`
tinyint
(
2
)
DEFAULT
2
COMMENT
'设备来源(0.子设备,1.网关设备,2.直连设备)'
,
`lon`
varchar
(
32
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'经度'
,
`lati`
varchar
(
32
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'纬度'
,
`leadingOfficial`
varchar
(
10
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'负责人'
,
`leadingOfficialTelephone`
varchar
(
11
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'联系电话'
,
`deviceStatus`
tinyint
(
2
)
DEFAULT
NULL
COMMENT
'设备状态 (0.未激活,1.离线,2.在线)'
,
`deviceRemark`
varchar
(
256
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'备注'
,
`source`
tinyint
(
2
)
DEFAULT
1
COMMENT
'设备来源(0.旧设备,1.新设备)'
,
`createUserId`
bigint
(
20
)
NOT
NULL
COMMENT
'创建用户'
,
`createTime`
datetime
NOT
NULL
COMMENT
'创建时间'
,
`updateUserId`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'更新用户'
,
`updateTime`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
PRIMARY
KEY
(
`id`
)
USING
BTREE
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'设备'
;
-- ----------------------------
-- 设备事项申请材料业务表
-- ----------------------------
DROP
TABLE
IF
EXISTS
`mortals_xhx_device_matter_datum`
;
CREATE
TABLE
mortals_xhx_device_matter_datum
(
`id`
bigint
(
20
)
AUTO_INCREMENT
COMMENT
'主键,自增长'
,
`siteId`
bigint
(
20
)
COMMENT
'站点ID'
,
`deviceId`
bigint
(
20
)
COMMENT
'设备id'
,
`deviceCode`
varchar
(
255
)
COMMENT
'设备编码'
,
`deviceName`
varchar
(
255
)
COMMENT
'设备名称'
,
`matterId`
bigint
(
20
)
COMMENT
'事项id'
,
`matterCode`
varchar
(
255
)
COMMENT
'事项编码'
,
`matterName`
varchar
(
255
)
COMMENT
'事项名称'
,
`deptId`
bigint
(
20
)
COMMENT
'部门ID'
,
`deptCode`
varchar
(
256
)
COMMENT
'部门编号'
,
`deptName`
varchar
(
256
)
COMMENT
'部门名称'
,
`source`
tinyint
(
2
)
COMMENT
'事项来源(0.政务网,1.自定义)'
,
`isRecommend`
tinyint
(
2
)
COMMENT
'是否推荐(0.未推荐,1.推荐)'
,
`sort`
int
(
4
)
COMMENT
'排序'
,
`createTime`
datetime
COMMENT
'创建时间'
,
`createUserId`
bigint
(
20
)
COMMENT
'创建用户'
,
`updateTime`
datetime
COMMENT
'修改时间'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'设备事项申请材料业务'
;
...
...
fill-manager/src/main/java/com/mortals/xhx/daemon/task/SyncSiteDeviceTaskImpl.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.daemon.task
;
import
com.alibaba.fastjson.JSON
;
import
com.mortals.framework.common.Rest
;
import
com.mortals.framework.exception.AppException
;
import
com.mortals.framework.service.ITask
;
import
com.mortals.framework.service.ITaskExcuteService
;
import
com.mortals.xhx.common.code.YesNoEnum
;
import
com.mortals.xhx.common.pdu.RespData
;
import
com.mortals.xhx.common.pdu.device.DevicePdu
;
import
com.mortals.xhx.common.pdu.site.SitePdu
;
import
com.mortals.xhx.common.utils.BeanUtil
;
import
com.mortals.xhx.feign.device.IDeviceFeign
;
import
com.mortals.xhx.feign.site.ISiteFeign
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
import
com.mortals.xhx.module.device.model.DeviceQuery
;
import
com.mortals.xhx.module.device.service.DeviceService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.ObjectUtils
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.stream.Collectors
;
/**
* 同步事项列表
*/
@Slf4j
@Service
(
"SyncSiteDeviceTask"
)
public
class
SyncSiteDeviceTaskImpl
implements
ITaskExcuteService
{
@Autowired
private
ISiteFeign
siteFeign
;
@Autowired
private
IDeviceFeign
deviceFeign
;
@Autowired
private
DeviceService
deviceService
;
@Override
public
void
excuteTask
(
ITask
task
)
throws
AppException
{
log
.
info
(
"开始同步设备列表!"
);
SitePdu
sitePdu
=
new
SitePdu
();
sitePdu
.
setId
(
1L
);
Rest
<
List
<
SitePdu
>>
siteRest
=
siteFeign
.
getFlatSitesBySiteId
(
sitePdu
);
if
(
siteRest
.
getCode
()
==
YesNoEnum
.
YES
.
getValue
())
{
log
.
info
(
"站点总数量:{}"
,
siteRest
.
getData
().
size
());
siteRest
.
getData
().
forEach
(
site
->
{
log
.
info
(
"站点名称:{}"
,
site
.
getSiteName
());
DevicePdu
devicePdu
=
new
DevicePdu
();
devicePdu
.
setProductCode
(
"ybj"
);
devicePdu
.
setSize
(-
1
);
Rest
<
RespData
<
List
<
DevicePdu
>>>
deviceRest
=
deviceFeign
.
list
(
devicePdu
);
log
.
info
(
"deviceRest:{}"
,
JSON
.
toJSONString
(
deviceRest
));
if
(
YesNoEnum
.
YES
.
getValue
()
==
deviceRest
.
getCode
())
{
List
<
DevicePdu
>
devicePduList
=
deviceRest
.
getData
().
getData
();
log
.
info
(
"样表机总数量:{}"
,
devicePduList
.
size
());
if
(!
ObjectUtils
.
isEmpty
(
devicePduList
))
{
List
<
DeviceEntity
>
newDeviceList
=
devicePduList
.
stream
().
map
(
newDevice
->
{
DeviceEntity
deviceEntity
=
new
DeviceEntity
();
deviceEntity
.
initAttrValue
();
BeanUtils
.
copyProperties
(
newDevice
,
deviceEntity
,
BeanUtil
.
getNullPropertyNames
(
newDevice
));
return
deviceEntity
;
}).
collect
(
Collectors
.
toList
());
List
<
DeviceEntity
>
oldDeviceList
=
deviceService
.
find
(
new
DeviceQuery
().
siteId
(
site
.
getId
()));
Map
<
String
,
DeviceEntity
>
oldDeviceMap
=
oldDeviceList
.
stream
().
collect
(
Collectors
.
toMap
(
x
->
x
.
getDeviceCode
(),
y
->
y
,
(
o
,
n
)
->
n
));
List
<
DeviceEntity
>
updateDeviceLsit
=
newDeviceList
.
stream
().
map
(
item
->
{
if
(
oldDeviceMap
.
containsKey
(
item
.
getDeviceCode
()))
{
item
.
setId
(
oldDeviceMap
.
get
(
item
.
getDeviceCode
()).
getId
());
item
.
setDeviceId
(
item
.
getId
());
item
.
setUpdateTime
(
new
Date
());
return
item
;
}
return
null
;
}).
filter
(
f
->
f
!=
null
).
collect
(
Collectors
.
toList
());
List
<
DeviceEntity
>
saveDeviceList
=
newDeviceList
.
stream
().
map
(
item
->
{
if
(!
oldDeviceMap
.
containsKey
(
item
.
getDeviceCode
()))
{
item
.
setDeviceId
(
item
.
getId
());
item
.
setCreateUserId
(
1L
);
item
.
setCreateUserName
(
"系统管理员"
);
item
.
setCreateTime
(
new
Date
());
return
item
;
}
return
null
;
}).
filter
(
f
->
f
!=
null
).
collect
(
Collectors
.
toList
());
if
(!
ObjectUtils
.
isEmpty
(
updateDeviceLsit
))
{
log
.
info
(
"设备更新,size:{}"
,
updateDeviceLsit
.
size
());
deviceService
.
update
(
updateDeviceLsit
);
}
if
(!
ObjectUtils
.
isEmpty
(
saveDeviceList
))
{
log
.
info
(
"设备新增,size:{}"
,
saveDeviceList
.
size
());
deviceService
.
save
(
saveDeviceList
);
}
}
}
else
{
log
.
info
(
"设备列表查询异常,{}"
,
JSON
.
toJSONString
(
deviceRest
));
}
});
}
else
{
log
.
info
(
"站点列表查询异常,{}"
,
JSON
.
toJSONString
(
siteRest
));
}
}
@Override
public
void
stopTask
(
ITask
task
)
throws
AppException
{
}
}
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/DeviceDao.java
View file @
1c185a09
...
...
@@ -8,8 +8,9 @@ import com.mortals.xhx.module.device.model.DeviceEntity;
* 设备 DAO接口
*
* @author zxfei
* @date 202
2-06-27
* @date 202
3-02-25
*/
public
interface
DeviceDao
extends
ICRUDDao
<
DeviceEntity
,
Long
>{
...
...
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/DeviceMatterDatumDao.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.dao
;
import
com.mortals.framework.dao.ICRUDDao
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumEntity
;
/**
* 设备事项申请材料业务Dao
* 设备事项申请材料业务 DAO接口
*
* @author zxfei
* @date 2023-02-25
*/
public
interface
DeviceMatterDatumDao
extends
ICRUDDao
<
DeviceMatterDatumEntity
,
Long
>{
}
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/ibatis/DeviceDaoImpl.java
View file @
1c185a09
...
...
@@ -10,7 +10,7 @@ import org.springframework.stereotype.Repository;
* 设备DaoImpl DAO接口
*
* @author zxfei
* @date 202
2-06-27
* @date 202
3-02-25
*/
@Repository
(
"deviceDao"
)
public
class
DeviceDaoImpl
extends
BaseCRUDDaoMybatis
<
DeviceEntity
,
Long
>
implements
DeviceDao
{
...
...
fill-manager/src/main/java/com/mortals/xhx/module/device/dao/ibatis/DeviceMatterDatumDaoImpl.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.dao.ibatis
;
import
com.mortals.framework.dao.ibatis.BaseCRUDDaoMybatis
;
import
com.mortals.xhx.module.device.dao.DeviceMatterDatumDao
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumEntity
;
import
org.springframework.stereotype.Repository
;
/**
* 设备事项申请材料业务DaoImpl DAO接口
*
* @author zxfei
* @date 2023-02-25
*/
@Repository
(
"deviceMatterDatumDao"
)
public
class
DeviceMatterDatumDaoImpl
extends
BaseCRUDDaoMybatis
<
DeviceMatterDatumEntity
,
Long
>
implements
DeviceMatterDatumDao
{
}
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceEntity.java
View file @
1c185a09
package
com.mortals.xhx.module.device.model
;
import
com.fasterxml.jackson.databind.annotation.JsonDeserialize
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.xhx.base.framework.CustomJsonDateDeserializer
;
import
com.mortals.xhx.module.device.model.vo.DeviceVo
;
import
java.util.Date
;
/**
* 设备实体对象
*
* @author zxfei
* @date 2022-07-11
*/
* 设备实体对象
*
* @author zxfei
* @date 2023-02-25
*/
public
class
DeviceEntity
extends
DeviceVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备名称
* 设备id
*/
@Excel
(
name
=
"设备名称"
)
private
String
deviceName
;
private
Long
deviceId
;
/**
* 设备SN码
* 设备名称
*/
@Excel
(
name
=
"设备SN码"
)
private
String
deviceSN
;
private
String
deviceName
;
/**
* 设备编码,默认为MAC地址
* 设备编码
*/
@Excel
(
name
=
"设备编码"
)
private
String
deviceCode
;
/**
* 设备的MAC地址
*/
@Excel
(
name
=
"Mac地址"
,
type
=
Excel
.
Type
.
EXPORT
)
private
String
deviceMac
;
/**
* 站点Id,来源基础服务平台
* 站点Id
*/
private
Long
siteId
;
/**
...
...
@@ -51,58 +40,25 @@ public class DeviceEntity extends DeviceVo {
*/
private
String
siteName
;
/**
* 平台系统Id
* 产品编码
*/
private
Long
platformId
;
/**
* 平台系统名称
*/
private
String
platformName
;
/**
* 产品Id
*/
private
Long
productId
;
private
String
productCode
;
/**
* 产品名称
*/
private
String
productName
;
/**
* 设备生产厂商ID
*/
private
Long
deviceFirmId
;
/**
* 设备生产厂商名称
*/
private
String
deviceFirmname
;
/**
* 设备来源(0.子设备,1.网关设备,2.直连设备)
*/
private
Integer
deviceSrc
;
/**
* 数据获取方式(0.主动上报,1.被动拉取)
*/
private
Integer
deviceDataSourceWay
;
/**
* 经度
*/
private
String
lon
;
/**
* 经
度
* 纬
度
*/
private
String
lati
;
/**
* 所属楼栋
*/
private
Integer
deviceInBuilding
;
/**
* 所属楼层
*/
private
Integer
deviceInFloor
;
/**
* 保修期至
*/
@JsonDeserialize
(
using
=
CustomJsonDateDeserializer
.
class
)
private
Date
defectsLiabilityPeriod
;
/**
* 负责人
*/
...
...
@@ -111,85 +67,36 @@ public class DeviceEntity extends DeviceVo {
* 联系电话
*/
private
String
leadingOfficialTelephone
;
/**
* 是否接收异常短(0.否,1.是)
*/
private
Integer
isReceiveMess
;
/**
* 设备图片
*/
@Excel
(
name
=
"设备图片"
,
height
=
90
,
type
=
Excel
.
Type
.
EXPORT
,
cellType
=
Excel
.
ColumnType
.
IMAGE
)
private
String
devicePhotoPath
;
/**
* 设备访问ip
*/
private
String
ip
;
/**
* 中心设备编码
*/
private
String
centernum
;
/**
* 端口
*/
private
String
port
;
/**
* 设备topic信息
*/
private
String
deviceTopic
;
/**
* 设备状态 (0.未激活,1.离线,2.在线)
*/
private
Integer
deviceStatus
;
/**
* 启用状态 (0.停止,1.启用)
*/
private
Integer
enabled
;
/**
* 设备授权码
*/
private
String
deviceAuthCode
;
/**
* 备注
*/
private
String
deviceRemark
;
/**
* 最近上线时间
*/
private
Date
onlineTime
;
/**
* 最近离线时间
*/
private
Date
offlineTime
;
/**
* 是否删除(0.否,1.是)
*/
private
Integer
deleted
;
/**
* 设备来源(0.旧设备,1.新设备)
*/
private
Integer
source
;
public
DeviceEntity
(){}
/**
* 皮肤id
*/
private
Long
skinId
;
/**
* 皮肤名称
*/
private
String
skinName
;
/**
* 首页地址
* 获取 设备id
* @return Long
*/
private
String
homeUrl
;
public
Long
getDeviceId
(){
return
deviceId
;
}
/**
* 设备版本
* 设置 设备id
* @param deviceId
*/
private
String
deviceVersion
;
public
DeviceEntity
(){}
public
void
setDeviceId
(
Long
deviceId
){
this
.
deviceId
=
deviceId
;
}
/**
* 获取 设备名称
* @return String
...
...
@@ -205,14 +112,14 @@ public class DeviceEntity extends DeviceVo {
this
.
deviceName
=
deviceName
;
}
/**
* 获取 设备编码,SN码等,默认为MAC地址
* 获取 设备编码
* @return String
*/
public
String
getDeviceCode
(){
return
deviceCode
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* 设置 设备编码
* @param deviceCode
*/
public
void
setDeviceCode
(
String
deviceCode
){
...
...
@@ -233,14 +140,14 @@ public class DeviceEntity extends DeviceVo {
this
.
deviceMac
=
deviceMac
;
}
/**
* 获取 站点Id,来源基础服务平台
* 获取 站点Id
* @return Long
*/
public
Long
getSiteId
(){
return
siteId
;
}
/**
* 设置 站点Id,来源基础服务平台
* 设置 站点Id
* @param siteId
*/
public
void
setSiteId
(
Long
siteId
){
...
...
@@ -275,46 +182,18 @@ public class DeviceEntity extends DeviceVo {
this
.
siteName
=
siteName
;
}
/**
* 获取 平台系统Id
* @return Long
*/
public
Long
getPlatformId
(){
return
platformId
;
}
/**
* 设置 平台系统Id
* @param platformId
*/
public
void
setPlatformId
(
Long
platformId
){
this
.
platformId
=
platformId
;
}
/**
* 获取 平台系统名称
* 获取 产品编码
* @return String
*/
public
String
getPlatformName
(){
return
platformName
;
}
/**
* 设置 平台系统名称
* @param platformName
*/
public
void
setPlatformName
(
String
platformName
){
this
.
platformName
=
platformName
;
}
/**
* 获取 产品Id
* @return Long
*/
public
Long
getProductId
(){
return
productId
;
public
String
getProductCode
(){
return
productCode
;
}
/**
* 设置 产品Id
* @param productId
* 设置 产品编码
* @param productCode
*/
public
void
setProduct
Id
(
Long
productId
){
this
.
product
Id
=
productId
;
public
void
setProduct
Code
(
String
productCode
){
this
.
product
Code
=
productCode
;
}
/**
* 获取 产品名称
...
...
@@ -330,34 +209,6 @@ public class DeviceEntity extends DeviceVo {
public
void
setProductName
(
String
productName
){
this
.
productName
=
productName
;
}
/**
* 获取 设备生产厂商ID
* @return Long
*/
public
Long
getDeviceFirmId
(){
return
deviceFirmId
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmId
*/
public
void
setDeviceFirmId
(
Long
deviceFirmId
){
this
.
deviceFirmId
=
deviceFirmId
;
}
/**
* 获取 设备生产厂商名称
* @return String
*/
public
String
getDeviceFirmname
(){
return
deviceFirmname
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmname
*/
public
void
setDeviceFirmname
(
String
deviceFirmname
){
this
.
deviceFirmname
=
deviceFirmname
;
}
/**
* 获取 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return Integer
...
...
@@ -372,20 +223,6 @@ public class DeviceEntity extends DeviceVo {
public
void
setDeviceSrc
(
Integer
deviceSrc
){
this
.
deviceSrc
=
deviceSrc
;
}
/**
* 获取 数据获取方式(0.主动上报,1.被动拉取)
* @return Integer
*/
public
Integer
getDeviceDataSourceWay
(){
return
deviceDataSourceWay
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWay
*/
public
void
setDeviceDataSourceWay
(
Integer
deviceDataSourceWay
){
this
.
deviceDataSourceWay
=
deviceDataSourceWay
;
}
/**
* 获取 经度
* @return String
...
...
@@ -401,61 +238,19 @@ public class DeviceEntity extends DeviceVo {
this
.
lon
=
lon
;
}
/**
* 获取 经
度
* 获取 纬
度
* @return String
*/
public
String
getLati
(){
return
lati
;
}
/**
* 设置 经
度
* 设置 纬
度
* @param lati
*/
public
void
setLati
(
String
lati
){
this
.
lati
=
lati
;
}
/**
* 获取 所属楼栋
* @return Integer
*/
public
Integer
getDeviceInBuilding
(){
return
deviceInBuilding
;
}
/**
* 设置 所属楼栋
* @param deviceInBuilding
*/
public
void
setDeviceInBuilding
(
Integer
deviceInBuilding
){
this
.
deviceInBuilding
=
deviceInBuilding
;
}
/**
* 获取 所属楼层
* @return Integer
*/
public
Integer
getDeviceInFloor
(){
return
deviceInFloor
;
}
/**
* 设置 所属楼层
* @param deviceInFloor
*/
public
void
setDeviceInFloor
(
Integer
deviceInFloor
){
this
.
deviceInFloor
=
deviceInFloor
;
}
/**
* 获取 保修期至
* @return Date
*/
public
Date
getDefectsLiabilityPeriod
(){
return
defectsLiabilityPeriod
;
}
/**
* 设置 保修期至
* @param defectsLiabilityPeriod
*/
public
void
setDefectsLiabilityPeriod
(
Date
defectsLiabilityPeriod
){
this
.
defectsLiabilityPeriod
=
defectsLiabilityPeriod
;
}
/**
* 获取 负责人
* @return String
...
...
@@ -484,90 +279,6 @@ public class DeviceEntity extends DeviceVo {
public
void
setLeadingOfficialTelephone
(
String
leadingOfficialTelephone
){
this
.
leadingOfficialTelephone
=
leadingOfficialTelephone
;
}
/**
* 获取 是否接收异常短(0.否,1.是)
* @return Integer
*/
public
Integer
getIsReceiveMess
(){
return
isReceiveMess
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMess
*/
public
void
setIsReceiveMess
(
Integer
isReceiveMess
){
this
.
isReceiveMess
=
isReceiveMess
;
}
/**
* 获取 设备图片
* @return String
*/
public
String
getDevicePhotoPath
(){
return
devicePhotoPath
;
}
/**
* 设置 设备图片
* @param devicePhotoPath
*/
public
void
setDevicePhotoPath
(
String
devicePhotoPath
){
this
.
devicePhotoPath
=
devicePhotoPath
;
}
/**
* 获取 设备访问ip
* @return String
*/
public
String
getIp
(){
return
ip
;
}
/**
* 设置 设备访问ip
* @param ip
*/
public
void
setIp
(
String
ip
){
this
.
ip
=
ip
;
}
/**
* 获取 中心设备编码
* @return String
*/
public
String
getCenternum
(){
return
centernum
;
}
/**
* 设置 中心设备编码
* @param centernum
*/
public
void
setCenternum
(
String
centernum
){
this
.
centernum
=
centernum
;
}
/**
* 获取 端口
* @return String
*/
public
String
getPort
(){
return
port
;
}
/**
* 设置 端口
* @param port
*/
public
void
setPort
(
String
port
){
this
.
port
=
port
;
}
/**
* 获取 设备topic信息
* @return String
*/
public
String
getDeviceTopic
(){
return
deviceTopic
;
}
/**
* 设置 设备topic信息
* @param deviceTopic
*/
public
void
setDeviceTopic
(
String
deviceTopic
){
this
.
deviceTopic
=
deviceTopic
;
}
/**
* 获取 设备状态 (0.未激活,1.离线,2.在线)
* @return Integer
...
...
@@ -582,34 +293,6 @@ public class DeviceEntity extends DeviceVo {
public
void
setDeviceStatus
(
Integer
deviceStatus
){
this
.
deviceStatus
=
deviceStatus
;
}
/**
* 获取 启用状态 (0.停止,1.启用)
* @return Integer
*/
public
Integer
getEnabled
(){
return
enabled
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabled
*/
public
void
setEnabled
(
Integer
enabled
){
this
.
enabled
=
enabled
;
}
/**
* 获取 设备授权码
* @return String
*/
public
String
getDeviceAuthCode
(){
return
deviceAuthCode
;
}
/**
* 设置 设备授权码
* @param deviceAuthCode
*/
public
void
setDeviceAuthCode
(
String
deviceAuthCode
){
this
.
deviceAuthCode
=
deviceAuthCode
;
}
/**
* 获取 备注
* @return String
...
...
@@ -625,56 +308,14 @@ public class DeviceEntity extends DeviceVo {
this
.
deviceRemark
=
deviceRemark
;
}
/**
* 获取 最近上线时间
* @return Date
*/
public
Date
getOnlineTime
(){
return
onlineTime
;
}
/**
* 设置 最近上线时间
* @param onlineTime
*/
public
void
setOnlineTime
(
Date
onlineTime
){
this
.
onlineTime
=
onlineTime
;
}
/**
* 获取 最近离线时间
* @return Date
*/
public
Date
getOfflineTime
(){
return
offlineTime
;
}
/**
* 设置 最近离线时间
* @param offlineTime
*/
public
void
setOfflineTime
(
Date
offlineTime
){
this
.
offlineTime
=
offlineTime
;
}
/**
* 获取 是否删除(0.否,1.是)
* @return Integer
*/
public
Integer
getDeleted
(){
return
deleted
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deleted
*/
public
void
setDeleted
(
Integer
deleted
){
this
.
deleted
=
deleted
;
}
/**
* 获取 收不来源(0.旧设备,1.新设备)
* 获取 设备来源(0.旧设备,1.新设备)
* @return Integer
*/
public
Integer
getSource
(){
return
source
;
}
/**
* 设置 收不
来源(0.旧设备,1.新设备)
* 设置 设备
来源(0.旧设备,1.新设备)
* @param source
*/
public
void
setSource
(
Integer
source
){
...
...
@@ -682,45 +323,7 @@ public class DeviceEntity extends DeviceVo {
}
public
Long
getSkinId
()
{
return
skinId
;
}
public
void
setSkinId
(
Long
skinId
)
{
this
.
skinId
=
skinId
;
}
public
String
getSkinName
()
{
return
skinName
;
}
public
void
setSkinName
(
String
skinName
)
{
this
.
skinName
=
skinName
;
}
public
String
getHomeUrl
()
{
return
homeUrl
;
}
public
void
setHomeUrl
(
String
homeUrl
)
{
this
.
homeUrl
=
homeUrl
;
}
public
String
getDeviceSN
()
{
return
deviceSN
;
}
public
void
setDeviceSN
(
String
deviceSN
)
{
this
.
deviceSN
=
deviceSN
;
}
public
String
getDeviceVersion
()
{
return
deviceVersion
;
}
public
void
setDeviceVersion
(
String
deviceVersion
)
{
this
.
deviceVersion
=
deviceVersion
;
}
@Override
public
int
hashCode
()
{
...
...
@@ -740,124 +343,60 @@ public class DeviceEntity extends DeviceVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",deviceId:"
).
append
(
getDeviceId
());
sb
.
append
(
",deviceName:"
).
append
(
getDeviceName
());
sb
.
append
(
",deviceCode:"
).
append
(
getDeviceCode
());
sb
.
append
(
",deviceMac:"
).
append
(
getDeviceMac
());
sb
.
append
(
",siteId:"
).
append
(
getSiteId
());
sb
.
append
(
",siteCode:"
).
append
(
getSiteCode
());
sb
.
append
(
",siteName:"
).
append
(
getSiteName
());
sb
.
append
(
",platformId:"
).
append
(
getPlatformId
());
sb
.
append
(
",platformName:"
).
append
(
getPlatformName
());
sb
.
append
(
",productId:"
).
append
(
getProductId
());
sb
.
append
(
",productCode:"
).
append
(
getProductCode
());
sb
.
append
(
",productName:"
).
append
(
getProductName
());
sb
.
append
(
",deviceFirmId:"
).
append
(
getDeviceFirmId
());
sb
.
append
(
",deviceFirmname:"
).
append
(
getDeviceFirmname
());
sb
.
append
(
",deviceSrc:"
).
append
(
getDeviceSrc
());
sb
.
append
(
",deviceDataSourceWay:"
).
append
(
getDeviceDataSourceWay
());
sb
.
append
(
",lon:"
).
append
(
getLon
());
sb
.
append
(
",lati:"
).
append
(
getLati
());
sb
.
append
(
",deviceInBuilding:"
).
append
(
getDeviceInBuilding
());
sb
.
append
(
",deviceInFloor:"
).
append
(
getDeviceInFloor
());
sb
.
append
(
",defectsLiabilityPeriod:"
).
append
(
getDefectsLiabilityPeriod
());
sb
.
append
(
",leadingOfficial:"
).
append
(
getLeadingOfficial
());
sb
.
append
(
",leadingOfficialTelephone:"
).
append
(
getLeadingOfficialTelephone
());
sb
.
append
(
",isReceiveMess:"
).
append
(
getIsReceiveMess
());
sb
.
append
(
",devicePhotoPath:"
).
append
(
getDevicePhotoPath
());
sb
.
append
(
",ip:"
).
append
(
getIp
());
sb
.
append
(
",centernum:"
).
append
(
getCenternum
());
sb
.
append
(
",port:"
).
append
(
getPort
());
sb
.
append
(
",deviceTopic:"
).
append
(
getDeviceTopic
());
sb
.
append
(
",deviceStatus:"
).
append
(
getDeviceStatus
());
sb
.
append
(
",enabled:"
).
append
(
getEnabled
());
sb
.
append
(
",deviceAuthCode:"
).
append
(
getDeviceAuthCode
());
sb
.
append
(
",deviceRemark:"
).
append
(
getDeviceRemark
());
sb
.
append
(
",onlineTime:"
).
append
(
getOnlineTime
());
sb
.
append
(
",offlineTime:"
).
append
(
getOfflineTime
());
sb
.
append
(
",deleted:"
).
append
(
getDeleted
());
sb
.
append
(
",source:"
).
append
(
getSource
());
return
sb
.
toString
();
}
public
void
initAttrValue
(){
this
.
deviceName
=
""
;
this
.
deviceId
=
null
;
this
.
deviceCode
=
""
;
this
.
deviceName
=
null
;
this
.
deviceSN
=
""
;
this
.
deviceCode
=
null
;
this
.
deviceMac
=
""
;
this
.
deviceMac
=
null
;
this
.
siteId
=
null
;
this
.
siteCode
=
""
;
this
.
siteName
=
""
;
this
.
platformId
=
null
;
this
.
siteCode
=
null
;
this
.
platformName
=
""
;
this
.
siteName
=
null
;
this
.
productId
=
null
;
this
.
productCode
=
null
;
this
.
productName
=
""
;
this
.
deviceFirmId
=
null
;
this
.
deviceFirmname
=
""
;
this
.
productName
=
null
;
this
.
deviceSrc
=
2
;
this
.
deviceDataSourceWay
=
0
;
this
.
lon
=
""
;
this
.
lati
=
""
;
this
.
deviceInBuilding
=
null
;
this
.
deviceInFloor
=
null
;
this
.
defectsLiabilityPeriod
=
null
;
this
.
lon
=
null
;
this
.
leadingOfficial
=
""
;
this
.
lati
=
null
;
this
.
leadingOfficialTelephone
=
""
;
this
.
leadingOfficial
=
null
;
this
.
isReceiveMess
=
0
;
this
.
leadingOfficialTelephone
=
null
;
this
.
devicePhotoPath
=
""
;
this
.
deviceStatus
=
null
;
this
.
ip
=
""
;
this
.
centernum
=
""
;
this
.
port
=
""
;
this
.
deviceTopic
=
""
;
this
.
deviceStatus
=
0
;
this
.
enabled
=
0
;
this
.
deviceAuthCode
=
""
;
this
.
deviceRemark
=
""
;
this
.
onlineTime
=
null
;
this
.
offlineTime
=
null
;
this
.
deleted
=
0
;
this
.
deviceRemark
=
null
;
this
.
source
=
1
;
this
.
skinId
=
null
;
this
.
skinName
=
""
;
this
.
deviceVersion
=
""
;
this
.
homeUrl
=
""
;
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceMatterDatumEntity.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.model
;
import
com.mortals.xhx.module.device.model.vo.DeviceMatterDatumVo
;
/**
* 设备事项申请材料业务实体对象
*
* @author zxfei
* @date 2023-03-23
*/
public
class
DeviceMatterDatumEntity
extends
DeviceMatterDatumVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 站点ID
*/
private
Long
siteId
;
/**
* 设备id
*/
private
Long
deviceId
;
/**
* 设备编码
*/
private
String
deviceCode
;
/**
* 设备名称
*/
private
String
deviceName
;
/**
* 事项id
*/
private
Long
matterId
;
/**
* 事项编码
*/
private
String
matterCode
;
/**
* 事项名称
*/
private
String
matterName
;
/**
* 部门ID
*/
private
Long
deptId
;
/**
* 部门编号
*/
private
String
deptCode
;
/**
* 部门名称
*/
private
String
deptName
;
/**
* 事项来源(0.政务网,1.自定义)
*/
private
Integer
source
;
/**
* 是否推荐(0.未推荐,1.推荐)
*/
private
Integer
isRecommend
;
/**
* 排序
*/
private
Integer
sort
;
public
DeviceMatterDatumEntity
(){}
/**
* 获取 站点ID
* @return Long
*/
public
Long
getSiteId
(){
return
siteId
;
}
/**
* 设置 站点ID
* @param siteId
*/
public
void
setSiteId
(
Long
siteId
){
this
.
siteId
=
siteId
;
}
/**
* 获取 设备id
* @return Long
*/
public
Long
getDeviceId
(){
return
deviceId
;
}
/**
* 设置 设备id
* @param deviceId
*/
public
void
setDeviceId
(
Long
deviceId
){
this
.
deviceId
=
deviceId
;
}
/**
* 获取 设备编码
* @return String
*/
public
String
getDeviceCode
(){
return
deviceCode
;
}
/**
* 设置 设备编码
* @param deviceCode
*/
public
void
setDeviceCode
(
String
deviceCode
){
this
.
deviceCode
=
deviceCode
;
}
/**
* 获取 设备名称
* @return String
*/
public
String
getDeviceName
(){
return
deviceName
;
}
/**
* 设置 设备名称
* @param deviceName
*/
public
void
setDeviceName
(
String
deviceName
){
this
.
deviceName
=
deviceName
;
}
/**
* 获取 事项id
* @return Long
*/
public
Long
getMatterId
(){
return
matterId
;
}
/**
* 设置 事项id
* @param matterId
*/
public
void
setMatterId
(
Long
matterId
){
this
.
matterId
=
matterId
;
}
/**
* 获取 事项编码
* @return String
*/
public
String
getMatterCode
(){
return
matterCode
;
}
/**
* 设置 事项编码
* @param matterCode
*/
public
void
setMatterCode
(
String
matterCode
){
this
.
matterCode
=
matterCode
;
}
/**
* 获取 事项名称
* @return String
*/
public
String
getMatterName
(){
return
matterName
;
}
/**
* 设置 事项名称
* @param matterName
*/
public
void
setMatterName
(
String
matterName
){
this
.
matterName
=
matterName
;
}
/**
* 获取 部门ID
* @return Long
*/
public
Long
getDeptId
(){
return
deptId
;
}
/**
* 设置 部门ID
* @param deptId
*/
public
void
setDeptId
(
Long
deptId
){
this
.
deptId
=
deptId
;
}
/**
* 获取 部门编号
* @return String
*/
public
String
getDeptCode
(){
return
deptCode
;
}
/**
* 设置 部门编号
* @param deptCode
*/
public
void
setDeptCode
(
String
deptCode
){
this
.
deptCode
=
deptCode
;
}
/**
* 获取 部门名称
* @return String
*/
public
String
getDeptName
(){
return
deptName
;
}
/**
* 设置 部门名称
* @param deptName
*/
public
void
setDeptName
(
String
deptName
){
this
.
deptName
=
deptName
;
}
/**
* 获取 事项来源(0.政务网,1.自定义)
* @return Integer
*/
public
Integer
getSource
(){
return
source
;
}
/**
* 设置 事项来源(0.政务网,1.自定义)
* @param source
*/
public
void
setSource
(
Integer
source
){
this
.
source
=
source
;
}
/**
* 获取 是否推荐(0.未推荐,1.推荐)
* @return Integer
*/
public
Integer
getIsRecommend
(){
return
isRecommend
;
}
/**
* 设置 是否推荐(0.未推荐,1.推荐)
* @param isRecommend
*/
public
void
setIsRecommend
(
Integer
isRecommend
){
this
.
isRecommend
=
isRecommend
;
}
/**
* 获取 排序
* @return Integer
*/
public
Integer
getSort
(){
return
sort
;
}
/**
* 设置 排序
* @param sort
*/
public
void
setSort
(
Integer
sort
){
this
.
sort
=
sort
;
}
@Override
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
}
@Override
public
boolean
equals
(
Object
obj
)
{
if
(
obj
==
null
)
return
false
;
if
(
obj
instanceof
DeviceMatterDatumEntity
)
{
DeviceMatterDatumEntity
tmp
=
(
DeviceMatterDatumEntity
)
obj
;
if
(
this
.
getId
()
==
tmp
.
getId
())
{
return
true
;
}
}
return
false
;
}
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",siteId:"
).
append
(
getSiteId
());
sb
.
append
(
",deviceId:"
).
append
(
getDeviceId
());
sb
.
append
(
",deviceCode:"
).
append
(
getDeviceCode
());
sb
.
append
(
",deviceName:"
).
append
(
getDeviceName
());
sb
.
append
(
",matterId:"
).
append
(
getMatterId
());
sb
.
append
(
",matterCode:"
).
append
(
getMatterCode
());
sb
.
append
(
",matterName:"
).
append
(
getMatterName
());
sb
.
append
(
",deptId:"
).
append
(
getDeptId
());
sb
.
append
(
",deptCode:"
).
append
(
getDeptCode
());
sb
.
append
(
",deptName:"
).
append
(
getDeptName
());
sb
.
append
(
",source:"
).
append
(
getSource
());
sb
.
append
(
",isRecommend:"
).
append
(
getIsRecommend
());
sb
.
append
(
",sort:"
).
append
(
getSort
());
return
sb
.
toString
();
}
public
void
initAttrValue
(){
this
.
siteId
=
null
;
this
.
deviceId
=
null
;
this
.
deviceCode
=
null
;
this
.
deviceName
=
null
;
this
.
matterId
=
null
;
this
.
matterCode
=
null
;
this
.
matterName
=
null
;
this
.
deptId
=
null
;
this
.
deptCode
=
null
;
this
.
deptName
=
null
;
this
.
source
=
null
;
this
.
isRecommend
=
null
;
this
.
sort
=
null
;
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceMatterDatumQuery.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.model
;
import
java.util.List
;
/**
* 设备事项申请材料业务查询对象
*
* @author zxfei
* @date 2023-03-23
*/
public
class
DeviceMatterDatumQuery
extends
DeviceMatterDatumEntity
{
/** 开始 主键,自增长 */
private
Long
idStart
;
/** 结束 主键,自增长 */
private
Long
idEnd
;
/** 增加 主键,自增长 */
private
Long
idIncrement
;
/** 主键,自增长列表 */
private
List
<
Long
>
idList
;
/** 主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 开始 站点ID */
private
Long
siteIdStart
;
/** 结束 站点ID */
private
Long
siteIdEnd
;
/** 增加 站点ID */
private
Long
siteIdIncrement
;
/** 站点ID列表 */
private
List
<
Long
>
siteIdList
;
/** 站点ID排除列表 */
private
List
<
Long
>
siteIdNotList
;
/** 开始 设备id */
private
Long
deviceIdStart
;
/** 结束 设备id */
private
Long
deviceIdEnd
;
/** 增加 设备id */
private
Long
deviceIdIncrement
;
/** 设备id列表 */
private
List
<
Long
>
deviceIdList
;
/** 设备id排除列表 */
private
List
<
Long
>
deviceIdNotList
;
/** 设备编码 */
private
List
<
String
>
deviceCodeList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceCodeNotList
;
/** 设备名称 */
private
List
<
String
>
deviceNameList
;
/** 设备名称排除列表 */
private
List
<
String
>
deviceNameNotList
;
/** 开始 事项id */
private
Long
matterIdStart
;
/** 结束 事项id */
private
Long
matterIdEnd
;
/** 增加 事项id */
private
Long
matterIdIncrement
;
/** 事项id列表 */
private
List
<
Long
>
matterIdList
;
/** 事项id排除列表 */
private
List
<
Long
>
matterIdNotList
;
/** 事项编码 */
private
List
<
String
>
matterCodeList
;
/** 事项编码排除列表 */
private
List
<
String
>
matterCodeNotList
;
/** 事项名称 */
private
List
<
String
>
matterNameList
;
/** 事项名称排除列表 */
private
List
<
String
>
matterNameNotList
;
/** 开始 部门ID */
private
Long
deptIdStart
;
/** 结束 部门ID */
private
Long
deptIdEnd
;
/** 增加 部门ID */
private
Long
deptIdIncrement
;
/** 部门ID列表 */
private
List
<
Long
>
deptIdList
;
/** 部门ID排除列表 */
private
List
<
Long
>
deptIdNotList
;
/** 部门编号 */
private
List
<
String
>
deptCodeList
;
/** 部门编号排除列表 */
private
List
<
String
>
deptCodeNotList
;
/** 部门名称 */
private
List
<
String
>
deptNameList
;
/** 部门名称排除列表 */
private
List
<
String
>
deptNameNotList
;
/** 开始 事项来源(0.政务网,1.自定义) */
private
Integer
sourceStart
;
/** 结束 事项来源(0.政务网,1.自定义) */
private
Integer
sourceEnd
;
/** 增加 事项来源(0.政务网,1.自定义) */
private
Integer
sourceIncrement
;
/** 事项来源(0.政务网,1.自定义)列表 */
private
List
<
Integer
>
sourceList
;
/** 事项来源(0.政务网,1.自定义)排除列表 */
private
List
<
Integer
>
sourceNotList
;
/** 开始 是否推荐(0.未推荐,1.推荐) */
private
Integer
isRecommendStart
;
/** 结束 是否推荐(0.未推荐,1.推荐) */
private
Integer
isRecommendEnd
;
/** 增加 是否推荐(0.未推荐,1.推荐) */
private
Integer
isRecommendIncrement
;
/** 是否推荐(0.未推荐,1.推荐)列表 */
private
List
<
Integer
>
isRecommendList
;
/** 是否推荐(0.未推荐,1.推荐)排除列表 */
private
List
<
Integer
>
isRecommendNotList
;
/** 开始 排序 */
private
Integer
sortStart
;
/** 结束 排序 */
private
Integer
sortEnd
;
/** 增加 排序 */
private
Integer
sortIncrement
;
/** 排序列表 */
private
List
<
Integer
>
sortList
;
/** 排序排除列表 */
private
List
<
Integer
>
sortNotList
;
/** 开始 创建时间 */
private
String
createTimeStart
;
/** 结束 创建时间 */
private
String
createTimeEnd
;
/** 开始 创建用户 */
private
Long
createUserIdStart
;
/** 结束 创建用户 */
private
Long
createUserIdEnd
;
/** 增加 创建用户 */
private
Long
createUserIdIncrement
;
/** 创建用户列表 */
private
List
<
Long
>
createUserIdList
;
/** 创建用户排除列表 */
private
List
<
Long
>
createUserIdNotList
;
/** 开始 修改时间 */
private
String
updateTimeStart
;
/** 结束 修改时间 */
private
String
updateTimeEnd
;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private
List
<
DeviceMatterDatumQuery
>
orConditionList
;
/** AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) */
private
List
<
DeviceMatterDatumQuery
>
andConditionList
;
public
DeviceMatterDatumQuery
(){}
/**
* 获取 开始 主键,自增长
* @return idStart
*/
public
Long
getIdStart
(){
return
this
.
idStart
;
}
/**
* 设置 开始 主键,自增长
* @param idStart
*/
public
void
setIdStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
}
/**
* 获取 结束 主键,自增长
* @return $idEnd
*/
public
Long
getIdEnd
(){
return
this
.
idEnd
;
}
/**
* 设置 结束 主键,自增长
* @param idEnd
*/
public
void
setIdEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
}
/**
* 获取 增加 主键,自增长
* @return idIncrement
*/
public
Long
getIdIncrement
(){
return
this
.
idIncrement
;
}
/**
* 设置 增加 主键,自增长
* @param idIncrement
*/
public
void
setIdIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
}
/**
* 获取 主键,自增长
* @return idList
*/
public
List
<
Long
>
getIdList
(){
return
this
.
idList
;
}
/**
* 设置 主键,自增长
* @param idList
*/
public
void
setIdList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
}
/**
* 获取 主键,自增长
* @return idNotList
*/
public
List
<
Long
>
getIdNotList
(){
return
this
.
idNotList
;
}
/**
* 设置 主键,自增长
* @param idNotList
*/
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
}
/**
* 获取 开始 站点ID
* @return siteIdStart
*/
public
Long
getSiteIdStart
(){
return
this
.
siteIdStart
;
}
/**
* 设置 开始 站点ID
* @param siteIdStart
*/
public
void
setSiteIdStart
(
Long
siteIdStart
){
this
.
siteIdStart
=
siteIdStart
;
}
/**
* 获取 结束 站点ID
* @return $siteIdEnd
*/
public
Long
getSiteIdEnd
(){
return
this
.
siteIdEnd
;
}
/**
* 设置 结束 站点ID
* @param siteIdEnd
*/
public
void
setSiteIdEnd
(
Long
siteIdEnd
){
this
.
siteIdEnd
=
siteIdEnd
;
}
/**
* 获取 增加 站点ID
* @return siteIdIncrement
*/
public
Long
getSiteIdIncrement
(){
return
this
.
siteIdIncrement
;
}
/**
* 设置 增加 站点ID
* @param siteIdIncrement
*/
public
void
setSiteIdIncrement
(
Long
siteIdIncrement
){
this
.
siteIdIncrement
=
siteIdIncrement
;
}
/**
* 获取 站点ID
* @return siteIdList
*/
public
List
<
Long
>
getSiteIdList
(){
return
this
.
siteIdList
;
}
/**
* 设置 站点ID
* @param siteIdList
*/
public
void
setSiteIdList
(
List
<
Long
>
siteIdList
){
this
.
siteIdList
=
siteIdList
;
}
/**
* 获取 站点ID
* @return siteIdNotList
*/
public
List
<
Long
>
getSiteIdNotList
(){
return
this
.
siteIdNotList
;
}
/**
* 设置 站点ID
* @param siteIdNotList
*/
public
void
setSiteIdNotList
(
List
<
Long
>
siteIdNotList
){
this
.
siteIdNotList
=
siteIdNotList
;
}
/**
* 获取 开始 设备id
* @return deviceIdStart
*/
public
Long
getDeviceIdStart
(){
return
this
.
deviceIdStart
;
}
/**
* 设置 开始 设备id
* @param deviceIdStart
*/
public
void
setDeviceIdStart
(
Long
deviceIdStart
){
this
.
deviceIdStart
=
deviceIdStart
;
}
/**
* 获取 结束 设备id
* @return $deviceIdEnd
*/
public
Long
getDeviceIdEnd
(){
return
this
.
deviceIdEnd
;
}
/**
* 设置 结束 设备id
* @param deviceIdEnd
*/
public
void
setDeviceIdEnd
(
Long
deviceIdEnd
){
this
.
deviceIdEnd
=
deviceIdEnd
;
}
/**
* 获取 增加 设备id
* @return deviceIdIncrement
*/
public
Long
getDeviceIdIncrement
(){
return
this
.
deviceIdIncrement
;
}
/**
* 设置 增加 设备id
* @param deviceIdIncrement
*/
public
void
setDeviceIdIncrement
(
Long
deviceIdIncrement
){
this
.
deviceIdIncrement
=
deviceIdIncrement
;
}
/**
* 获取 设备id
* @return deviceIdList
*/
public
List
<
Long
>
getDeviceIdList
(){
return
this
.
deviceIdList
;
}
/**
* 设置 设备id
* @param deviceIdList
*/
public
void
setDeviceIdList
(
List
<
Long
>
deviceIdList
){
this
.
deviceIdList
=
deviceIdList
;
}
/**
* 获取 设备id
* @return deviceIdNotList
*/
public
List
<
Long
>
getDeviceIdNotList
(){
return
this
.
deviceIdNotList
;
}
/**
* 设置 设备id
* @param deviceIdNotList
*/
public
void
setDeviceIdNotList
(
List
<
Long
>
deviceIdNotList
){
this
.
deviceIdNotList
=
deviceIdNotList
;
}
/**
* 获取 设备编码
* @return deviceCodeList
*/
public
List
<
String
>
getDeviceCodeList
(){
return
this
.
deviceCodeList
;
}
/**
* 设置 设备编码
* @param deviceCodeList
*/
public
void
setDeviceCodeList
(
List
<
String
>
deviceCodeList
){
this
.
deviceCodeList
=
deviceCodeList
;
}
/**
* 获取 设备编码
* @return deviceCodeNotList
*/
public
List
<
String
>
getDeviceCodeNotList
(){
return
this
.
deviceCodeNotList
;
}
/**
* 设置 设备编码
* @param deviceCodeNotList
*/
public
void
setDeviceCodeNotList
(
List
<
String
>
deviceCodeNotList
){
this
.
deviceCodeNotList
=
deviceCodeNotList
;
}
/**
* 获取 设备名称
* @return deviceNameList
*/
public
List
<
String
>
getDeviceNameList
(){
return
this
.
deviceNameList
;
}
/**
* 设置 设备名称
* @param deviceNameList
*/
public
void
setDeviceNameList
(
List
<
String
>
deviceNameList
){
this
.
deviceNameList
=
deviceNameList
;
}
/**
* 获取 设备名称
* @return deviceNameNotList
*/
public
List
<
String
>
getDeviceNameNotList
(){
return
this
.
deviceNameNotList
;
}
/**
* 设置 设备名称
* @param deviceNameNotList
*/
public
void
setDeviceNameNotList
(
List
<
String
>
deviceNameNotList
){
this
.
deviceNameNotList
=
deviceNameNotList
;
}
/**
* 获取 开始 事项id
* @return matterIdStart
*/
public
Long
getMatterIdStart
(){
return
this
.
matterIdStart
;
}
/**
* 设置 开始 事项id
* @param matterIdStart
*/
public
void
setMatterIdStart
(
Long
matterIdStart
){
this
.
matterIdStart
=
matterIdStart
;
}
/**
* 获取 结束 事项id
* @return $matterIdEnd
*/
public
Long
getMatterIdEnd
(){
return
this
.
matterIdEnd
;
}
/**
* 设置 结束 事项id
* @param matterIdEnd
*/
public
void
setMatterIdEnd
(
Long
matterIdEnd
){
this
.
matterIdEnd
=
matterIdEnd
;
}
/**
* 获取 增加 事项id
* @return matterIdIncrement
*/
public
Long
getMatterIdIncrement
(){
return
this
.
matterIdIncrement
;
}
/**
* 设置 增加 事项id
* @param matterIdIncrement
*/
public
void
setMatterIdIncrement
(
Long
matterIdIncrement
){
this
.
matterIdIncrement
=
matterIdIncrement
;
}
/**
* 获取 事项id
* @return matterIdList
*/
public
List
<
Long
>
getMatterIdList
(){
return
this
.
matterIdList
;
}
/**
* 设置 事项id
* @param matterIdList
*/
public
void
setMatterIdList
(
List
<
Long
>
matterIdList
){
this
.
matterIdList
=
matterIdList
;
}
/**
* 获取 事项id
* @return matterIdNotList
*/
public
List
<
Long
>
getMatterIdNotList
(){
return
this
.
matterIdNotList
;
}
/**
* 设置 事项id
* @param matterIdNotList
*/
public
void
setMatterIdNotList
(
List
<
Long
>
matterIdNotList
){
this
.
matterIdNotList
=
matterIdNotList
;
}
/**
* 获取 事项编码
* @return matterCodeList
*/
public
List
<
String
>
getMatterCodeList
(){
return
this
.
matterCodeList
;
}
/**
* 设置 事项编码
* @param matterCodeList
*/
public
void
setMatterCodeList
(
List
<
String
>
matterCodeList
){
this
.
matterCodeList
=
matterCodeList
;
}
/**
* 获取 事项编码
* @return matterCodeNotList
*/
public
List
<
String
>
getMatterCodeNotList
(){
return
this
.
matterCodeNotList
;
}
/**
* 设置 事项编码
* @param matterCodeNotList
*/
public
void
setMatterCodeNotList
(
List
<
String
>
matterCodeNotList
){
this
.
matterCodeNotList
=
matterCodeNotList
;
}
/**
* 获取 事项名称
* @return matterNameList
*/
public
List
<
String
>
getMatterNameList
(){
return
this
.
matterNameList
;
}
/**
* 设置 事项名称
* @param matterNameList
*/
public
void
setMatterNameList
(
List
<
String
>
matterNameList
){
this
.
matterNameList
=
matterNameList
;
}
/**
* 获取 事项名称
* @return matterNameNotList
*/
public
List
<
String
>
getMatterNameNotList
(){
return
this
.
matterNameNotList
;
}
/**
* 设置 事项名称
* @param matterNameNotList
*/
public
void
setMatterNameNotList
(
List
<
String
>
matterNameNotList
){
this
.
matterNameNotList
=
matterNameNotList
;
}
/**
* 获取 开始 部门ID
* @return deptIdStart
*/
public
Long
getDeptIdStart
(){
return
this
.
deptIdStart
;
}
/**
* 设置 开始 部门ID
* @param deptIdStart
*/
public
void
setDeptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
}
/**
* 获取 结束 部门ID
* @return $deptIdEnd
*/
public
Long
getDeptIdEnd
(){
return
this
.
deptIdEnd
;
}
/**
* 设置 结束 部门ID
* @param deptIdEnd
*/
public
void
setDeptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
}
/**
* 获取 增加 部门ID
* @return deptIdIncrement
*/
public
Long
getDeptIdIncrement
(){
return
this
.
deptIdIncrement
;
}
/**
* 设置 增加 部门ID
* @param deptIdIncrement
*/
public
void
setDeptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
}
/**
* 获取 部门ID
* @return deptIdList
*/
public
List
<
Long
>
getDeptIdList
(){
return
this
.
deptIdList
;
}
/**
* 设置 部门ID
* @param deptIdList
*/
public
void
setDeptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
}
/**
* 获取 部门ID
* @return deptIdNotList
*/
public
List
<
Long
>
getDeptIdNotList
(){
return
this
.
deptIdNotList
;
}
/**
* 设置 部门ID
* @param deptIdNotList
*/
public
void
setDeptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
}
/**
* 获取 部门编号
* @return deptCodeList
*/
public
List
<
String
>
getDeptCodeList
(){
return
this
.
deptCodeList
;
}
/**
* 设置 部门编号
* @param deptCodeList
*/
public
void
setDeptCodeList
(
List
<
String
>
deptCodeList
){
this
.
deptCodeList
=
deptCodeList
;
}
/**
* 获取 部门编号
* @return deptCodeNotList
*/
public
List
<
String
>
getDeptCodeNotList
(){
return
this
.
deptCodeNotList
;
}
/**
* 设置 部门编号
* @param deptCodeNotList
*/
public
void
setDeptCodeNotList
(
List
<
String
>
deptCodeNotList
){
this
.
deptCodeNotList
=
deptCodeNotList
;
}
/**
* 获取 部门名称
* @return deptNameList
*/
public
List
<
String
>
getDeptNameList
(){
return
this
.
deptNameList
;
}
/**
* 设置 部门名称
* @param deptNameList
*/
public
void
setDeptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
}
/**
* 获取 部门名称
* @return deptNameNotList
*/
public
List
<
String
>
getDeptNameNotList
(){
return
this
.
deptNameNotList
;
}
/**
* 设置 部门名称
* @param deptNameNotList
*/
public
void
setDeptNameNotList
(
List
<
String
>
deptNameNotList
){
this
.
deptNameNotList
=
deptNameNotList
;
}
/**
* 获取 开始 事项来源(0.政务网,1.自定义)
* @return sourceStart
*/
public
Integer
getSourceStart
(){
return
this
.
sourceStart
;
}
/**
* 设置 开始 事项来源(0.政务网,1.自定义)
* @param sourceStart
*/
public
void
setSourceStart
(
Integer
sourceStart
){
this
.
sourceStart
=
sourceStart
;
}
/**
* 获取 结束 事项来源(0.政务网,1.自定义)
* @return $sourceEnd
*/
public
Integer
getSourceEnd
(){
return
this
.
sourceEnd
;
}
/**
* 设置 结束 事项来源(0.政务网,1.自定义)
* @param sourceEnd
*/
public
void
setSourceEnd
(
Integer
sourceEnd
){
this
.
sourceEnd
=
sourceEnd
;
}
/**
* 获取 增加 事项来源(0.政务网,1.自定义)
* @return sourceIncrement
*/
public
Integer
getSourceIncrement
(){
return
this
.
sourceIncrement
;
}
/**
* 设置 增加 事项来源(0.政务网,1.自定义)
* @param sourceIncrement
*/
public
void
setSourceIncrement
(
Integer
sourceIncrement
){
this
.
sourceIncrement
=
sourceIncrement
;
}
/**
* 获取 事项来源(0.政务网,1.自定义)
* @return sourceList
*/
public
List
<
Integer
>
getSourceList
(){
return
this
.
sourceList
;
}
/**
* 设置 事项来源(0.政务网,1.自定义)
* @param sourceList
*/
public
void
setSourceList
(
List
<
Integer
>
sourceList
){
this
.
sourceList
=
sourceList
;
}
/**
* 获取 事项来源(0.政务网,1.自定义)
* @return sourceNotList
*/
public
List
<
Integer
>
getSourceNotList
(){
return
this
.
sourceNotList
;
}
/**
* 设置 事项来源(0.政务网,1.自定义)
* @param sourceNotList
*/
public
void
setSourceNotList
(
List
<
Integer
>
sourceNotList
){
this
.
sourceNotList
=
sourceNotList
;
}
/**
* 获取 开始 是否推荐(0.未推荐,1.推荐)
* @return isRecommendStart
*/
public
Integer
getIsRecommendStart
(){
return
this
.
isRecommendStart
;
}
/**
* 设置 开始 是否推荐(0.未推荐,1.推荐)
* @param isRecommendStart
*/
public
void
setIsRecommendStart
(
Integer
isRecommendStart
){
this
.
isRecommendStart
=
isRecommendStart
;
}
/**
* 获取 结束 是否推荐(0.未推荐,1.推荐)
* @return $isRecommendEnd
*/
public
Integer
getIsRecommendEnd
(){
return
this
.
isRecommendEnd
;
}
/**
* 设置 结束 是否推荐(0.未推荐,1.推荐)
* @param isRecommendEnd
*/
public
void
setIsRecommendEnd
(
Integer
isRecommendEnd
){
this
.
isRecommendEnd
=
isRecommendEnd
;
}
/**
* 获取 增加 是否推荐(0.未推荐,1.推荐)
* @return isRecommendIncrement
*/
public
Integer
getIsRecommendIncrement
(){
return
this
.
isRecommendIncrement
;
}
/**
* 设置 增加 是否推荐(0.未推荐,1.推荐)
* @param isRecommendIncrement
*/
public
void
setIsRecommendIncrement
(
Integer
isRecommendIncrement
){
this
.
isRecommendIncrement
=
isRecommendIncrement
;
}
/**
* 获取 是否推荐(0.未推荐,1.推荐)
* @return isRecommendList
*/
public
List
<
Integer
>
getIsRecommendList
(){
return
this
.
isRecommendList
;
}
/**
* 设置 是否推荐(0.未推荐,1.推荐)
* @param isRecommendList
*/
public
void
setIsRecommendList
(
List
<
Integer
>
isRecommendList
){
this
.
isRecommendList
=
isRecommendList
;
}
/**
* 获取 是否推荐(0.未推荐,1.推荐)
* @return isRecommendNotList
*/
public
List
<
Integer
>
getIsRecommendNotList
(){
return
this
.
isRecommendNotList
;
}
/**
* 设置 是否推荐(0.未推荐,1.推荐)
* @param isRecommendNotList
*/
public
void
setIsRecommendNotList
(
List
<
Integer
>
isRecommendNotList
){
this
.
isRecommendNotList
=
isRecommendNotList
;
}
/**
* 获取 开始 排序
* @return sortStart
*/
public
Integer
getSortStart
(){
return
this
.
sortStart
;
}
/**
* 设置 开始 排序
* @param sortStart
*/
public
void
setSortStart
(
Integer
sortStart
){
this
.
sortStart
=
sortStart
;
}
/**
* 获取 结束 排序
* @return $sortEnd
*/
public
Integer
getSortEnd
(){
return
this
.
sortEnd
;
}
/**
* 设置 结束 排序
* @param sortEnd
*/
public
void
setSortEnd
(
Integer
sortEnd
){
this
.
sortEnd
=
sortEnd
;
}
/**
* 获取 增加 排序
* @return sortIncrement
*/
public
Integer
getSortIncrement
(){
return
this
.
sortIncrement
;
}
/**
* 设置 增加 排序
* @param sortIncrement
*/
public
void
setSortIncrement
(
Integer
sortIncrement
){
this
.
sortIncrement
=
sortIncrement
;
}
/**
* 获取 排序
* @return sortList
*/
public
List
<
Integer
>
getSortList
(){
return
this
.
sortList
;
}
/**
* 设置 排序
* @param sortList
*/
public
void
setSortList
(
List
<
Integer
>
sortList
){
this
.
sortList
=
sortList
;
}
/**
* 获取 排序
* @return sortNotList
*/
public
List
<
Integer
>
getSortNotList
(){
return
this
.
sortNotList
;
}
/**
* 设置 排序
* @param sortNotList
*/
public
void
setSortNotList
(
List
<
Integer
>
sortNotList
){
this
.
sortNotList
=
sortNotList
;
}
/**
* 获取 开始 创建时间
* @return createTimeStart
*/
public
String
getCreateTimeStart
(){
return
this
.
createTimeStart
;
}
/**
* 设置 开始 创建时间
* @param createTimeStart
*/
public
void
setCreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStart
;
}
/**
* 获取 结束 创建时间
* @return createTimeEnd
*/
public
String
getCreateTimeEnd
(){
return
this
.
createTimeEnd
;
}
/**
* 设置 结束 创建时间
* @param createTimeEnd
*/
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
}
/**
* 获取 开始 创建用户
* @return createUserIdStart
*/
public
Long
getCreateUserIdStart
(){
return
this
.
createUserIdStart
;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
}
/**
* 获取 结束 创建用户
* @return $createUserIdEnd
*/
public
Long
getCreateUserIdEnd
(){
return
this
.
createUserIdEnd
;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
}
/**
* 获取 增加 创建用户
* @return createUserIdIncrement
*/
public
Long
getCreateUserIdIncrement
(){
return
this
.
createUserIdIncrement
;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
/**
* 获取 创建用户
* @return createUserIdList
*/
public
List
<
Long
>
getCreateUserIdList
(){
return
this
.
createUserIdList
;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
}
/**
* 获取 创建用户
* @return createUserIdNotList
*/
public
List
<
Long
>
getCreateUserIdNotList
(){
return
this
.
createUserIdNotList
;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public
void
setCreateUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
}
/**
* 获取 开始 修改时间
* @return updateTimeStart
*/
public
String
getUpdateTimeStart
(){
return
this
.
updateTimeStart
;
}
/**
* 设置 开始 修改时间
* @param updateTimeStart
*/
public
void
setUpdateTimeStart
(
String
updateTimeStart
){
this
.
updateTimeStart
=
updateTimeStart
;
}
/**
* 获取 结束 修改时间
* @return updateTimeEnd
*/
public
String
getUpdateTimeEnd
(){
return
this
.
updateTimeEnd
;
}
/**
* 设置 结束 修改时间
* @param updateTimeEnd
*/
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
}
/**
* 设置 主键,自增长
* @param id
*/
public
DeviceMatterDatumQuery
id
(
Long
id
){
setId
(
id
);
return
this
;
}
/**
* 设置 开始 主键,自增长
* @param idStart
*/
public
DeviceMatterDatumQuery
idStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
return
this
;
}
/**
* 设置 结束 主键,自增长
* @param idEnd
*/
public
DeviceMatterDatumQuery
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
return
this
;
}
/**
* 设置 增加 主键,自增长
* @param idIncrement
*/
public
DeviceMatterDatumQuery
idIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
return
this
;
}
/**
* 设置 主键,自增长
* @param idList
*/
public
DeviceMatterDatumQuery
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
return
this
;
}
/**
* 设置 主键,自增长
* @param idNotList
*/
public
DeviceMatterDatumQuery
idNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
return
this
;
}
/**
* 设置 站点ID
* @param siteId
*/
public
DeviceMatterDatumQuery
siteId
(
Long
siteId
){
setSiteId
(
siteId
);
return
this
;
}
/**
* 设置 开始 站点ID
* @param siteIdStart
*/
public
DeviceMatterDatumQuery
siteIdStart
(
Long
siteIdStart
){
this
.
siteIdStart
=
siteIdStart
;
return
this
;
}
/**
* 设置 结束 站点ID
* @param siteIdEnd
*/
public
DeviceMatterDatumQuery
siteIdEnd
(
Long
siteIdEnd
){
this
.
siteIdEnd
=
siteIdEnd
;
return
this
;
}
/**
* 设置 增加 站点ID
* @param siteIdIncrement
*/
public
DeviceMatterDatumQuery
siteIdIncrement
(
Long
siteIdIncrement
){
this
.
siteIdIncrement
=
siteIdIncrement
;
return
this
;
}
/**
* 设置 站点ID
* @param siteIdList
*/
public
DeviceMatterDatumQuery
siteIdList
(
List
<
Long
>
siteIdList
){
this
.
siteIdList
=
siteIdList
;
return
this
;
}
/**
* 设置 站点ID
* @param siteIdNotList
*/
public
DeviceMatterDatumQuery
siteIdNotList
(
List
<
Long
>
siteIdNotList
){
this
.
siteIdNotList
=
siteIdNotList
;
return
this
;
}
/**
* 设置 设备id
* @param deviceId
*/
public
DeviceMatterDatumQuery
deviceId
(
Long
deviceId
){
setDeviceId
(
deviceId
);
return
this
;
}
/**
* 设置 开始 设备id
* @param deviceIdStart
*/
public
DeviceMatterDatumQuery
deviceIdStart
(
Long
deviceIdStart
){
this
.
deviceIdStart
=
deviceIdStart
;
return
this
;
}
/**
* 设置 结束 设备id
* @param deviceIdEnd
*/
public
DeviceMatterDatumQuery
deviceIdEnd
(
Long
deviceIdEnd
){
this
.
deviceIdEnd
=
deviceIdEnd
;
return
this
;
}
/**
* 设置 增加 设备id
* @param deviceIdIncrement
*/
public
DeviceMatterDatumQuery
deviceIdIncrement
(
Long
deviceIdIncrement
){
this
.
deviceIdIncrement
=
deviceIdIncrement
;
return
this
;
}
/**
* 设置 设备id
* @param deviceIdList
*/
public
DeviceMatterDatumQuery
deviceIdList
(
List
<
Long
>
deviceIdList
){
this
.
deviceIdList
=
deviceIdList
;
return
this
;
}
/**
* 设置 设备id
* @param deviceIdNotList
*/
public
DeviceMatterDatumQuery
deviceIdNotList
(
List
<
Long
>
deviceIdNotList
){
this
.
deviceIdNotList
=
deviceIdNotList
;
return
this
;
}
/**
* 设置 设备编码
* @param deviceCode
*/
public
DeviceMatterDatumQuery
deviceCode
(
String
deviceCode
){
setDeviceCode
(
deviceCode
);
return
this
;
}
/**
* 设置 设备编码
* @param deviceCodeList
*/
public
DeviceMatterDatumQuery
deviceCodeList
(
List
<
String
>
deviceCodeList
){
this
.
deviceCodeList
=
deviceCodeList
;
return
this
;
}
/**
* 设置 设备名称
* @param deviceName
*/
public
DeviceMatterDatumQuery
deviceName
(
String
deviceName
){
setDeviceName
(
deviceName
);
return
this
;
}
/**
* 设置 设备名称
* @param deviceNameList
*/
public
DeviceMatterDatumQuery
deviceNameList
(
List
<
String
>
deviceNameList
){
this
.
deviceNameList
=
deviceNameList
;
return
this
;
}
/**
* 设置 事项id
* @param matterId
*/
public
DeviceMatterDatumQuery
matterId
(
Long
matterId
){
setMatterId
(
matterId
);
return
this
;
}
/**
* 设置 开始 事项id
* @param matterIdStart
*/
public
DeviceMatterDatumQuery
matterIdStart
(
Long
matterIdStart
){
this
.
matterIdStart
=
matterIdStart
;
return
this
;
}
/**
* 设置 结束 事项id
* @param matterIdEnd
*/
public
DeviceMatterDatumQuery
matterIdEnd
(
Long
matterIdEnd
){
this
.
matterIdEnd
=
matterIdEnd
;
return
this
;
}
/**
* 设置 增加 事项id
* @param matterIdIncrement
*/
public
DeviceMatterDatumQuery
matterIdIncrement
(
Long
matterIdIncrement
){
this
.
matterIdIncrement
=
matterIdIncrement
;
return
this
;
}
/**
* 设置 事项id
* @param matterIdList
*/
public
DeviceMatterDatumQuery
matterIdList
(
List
<
Long
>
matterIdList
){
this
.
matterIdList
=
matterIdList
;
return
this
;
}
/**
* 设置 事项id
* @param matterIdNotList
*/
public
DeviceMatterDatumQuery
matterIdNotList
(
List
<
Long
>
matterIdNotList
){
this
.
matterIdNotList
=
matterIdNotList
;
return
this
;
}
/**
* 设置 事项编码
* @param matterCode
*/
public
DeviceMatterDatumQuery
matterCode
(
String
matterCode
){
setMatterCode
(
matterCode
);
return
this
;
}
/**
* 设置 事项编码
* @param matterCodeList
*/
public
DeviceMatterDatumQuery
matterCodeList
(
List
<
String
>
matterCodeList
){
this
.
matterCodeList
=
matterCodeList
;
return
this
;
}
/**
* 设置 事项名称
* @param matterName
*/
public
DeviceMatterDatumQuery
matterName
(
String
matterName
){
setMatterName
(
matterName
);
return
this
;
}
/**
* 设置 事项名称
* @param matterNameList
*/
public
DeviceMatterDatumQuery
matterNameList
(
List
<
String
>
matterNameList
){
this
.
matterNameList
=
matterNameList
;
return
this
;
}
/**
* 设置 部门ID
* @param deptId
*/
public
DeviceMatterDatumQuery
deptId
(
Long
deptId
){
setDeptId
(
deptId
);
return
this
;
}
/**
* 设置 开始 部门ID
* @param deptIdStart
*/
public
DeviceMatterDatumQuery
deptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
return
this
;
}
/**
* 设置 结束 部门ID
* @param deptIdEnd
*/
public
DeviceMatterDatumQuery
deptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
return
this
;
}
/**
* 设置 增加 部门ID
* @param deptIdIncrement
*/
public
DeviceMatterDatumQuery
deptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
return
this
;
}
/**
* 设置 部门ID
* @param deptIdList
*/
public
DeviceMatterDatumQuery
deptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
return
this
;
}
/**
* 设置 部门ID
* @param deptIdNotList
*/
public
DeviceMatterDatumQuery
deptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
return
this
;
}
/**
* 设置 部门编号
* @param deptCode
*/
public
DeviceMatterDatumQuery
deptCode
(
String
deptCode
){
setDeptCode
(
deptCode
);
return
this
;
}
/**
* 设置 部门编号
* @param deptCodeList
*/
public
DeviceMatterDatumQuery
deptCodeList
(
List
<
String
>
deptCodeList
){
this
.
deptCodeList
=
deptCodeList
;
return
this
;
}
/**
* 设置 部门名称
* @param deptName
*/
public
DeviceMatterDatumQuery
deptName
(
String
deptName
){
setDeptName
(
deptName
);
return
this
;
}
/**
* 设置 部门名称
* @param deptNameList
*/
public
DeviceMatterDatumQuery
deptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
return
this
;
}
/**
* 设置 事项来源(0.政务网,1.自定义)
* @param source
*/
public
DeviceMatterDatumQuery
source
(
Integer
source
){
setSource
(
source
);
return
this
;
}
/**
* 设置 开始 事项来源(0.政务网,1.自定义)
* @param sourceStart
*/
public
DeviceMatterDatumQuery
sourceStart
(
Integer
sourceStart
){
this
.
sourceStart
=
sourceStart
;
return
this
;
}
/**
* 设置 结束 事项来源(0.政务网,1.自定义)
* @param sourceEnd
*/
public
DeviceMatterDatumQuery
sourceEnd
(
Integer
sourceEnd
){
this
.
sourceEnd
=
sourceEnd
;
return
this
;
}
/**
* 设置 增加 事项来源(0.政务网,1.自定义)
* @param sourceIncrement
*/
public
DeviceMatterDatumQuery
sourceIncrement
(
Integer
sourceIncrement
){
this
.
sourceIncrement
=
sourceIncrement
;
return
this
;
}
/**
* 设置 事项来源(0.政务网,1.自定义)
* @param sourceList
*/
public
DeviceMatterDatumQuery
sourceList
(
List
<
Integer
>
sourceList
){
this
.
sourceList
=
sourceList
;
return
this
;
}
/**
* 设置 事项来源(0.政务网,1.自定义)
* @param sourceNotList
*/
public
DeviceMatterDatumQuery
sourceNotList
(
List
<
Integer
>
sourceNotList
){
this
.
sourceNotList
=
sourceNotList
;
return
this
;
}
/**
* 设置 是否推荐(0.未推荐,1.推荐)
* @param isRecommend
*/
public
DeviceMatterDatumQuery
isRecommend
(
Integer
isRecommend
){
setIsRecommend
(
isRecommend
);
return
this
;
}
/**
* 设置 开始 是否推荐(0.未推荐,1.推荐)
* @param isRecommendStart
*/
public
DeviceMatterDatumQuery
isRecommendStart
(
Integer
isRecommendStart
){
this
.
isRecommendStart
=
isRecommendStart
;
return
this
;
}
/**
* 设置 结束 是否推荐(0.未推荐,1.推荐)
* @param isRecommendEnd
*/
public
DeviceMatterDatumQuery
isRecommendEnd
(
Integer
isRecommendEnd
){
this
.
isRecommendEnd
=
isRecommendEnd
;
return
this
;
}
/**
* 设置 增加 是否推荐(0.未推荐,1.推荐)
* @param isRecommendIncrement
*/
public
DeviceMatterDatumQuery
isRecommendIncrement
(
Integer
isRecommendIncrement
){
this
.
isRecommendIncrement
=
isRecommendIncrement
;
return
this
;
}
/**
* 设置 是否推荐(0.未推荐,1.推荐)
* @param isRecommendList
*/
public
DeviceMatterDatumQuery
isRecommendList
(
List
<
Integer
>
isRecommendList
){
this
.
isRecommendList
=
isRecommendList
;
return
this
;
}
/**
* 设置 是否推荐(0.未推荐,1.推荐)
* @param isRecommendNotList
*/
public
DeviceMatterDatumQuery
isRecommendNotList
(
List
<
Integer
>
isRecommendNotList
){
this
.
isRecommendNotList
=
isRecommendNotList
;
return
this
;
}
/**
* 设置 排序
* @param sort
*/
public
DeviceMatterDatumQuery
sort
(
Integer
sort
){
setSort
(
sort
);
return
this
;
}
/**
* 设置 开始 排序
* @param sortStart
*/
public
DeviceMatterDatumQuery
sortStart
(
Integer
sortStart
){
this
.
sortStart
=
sortStart
;
return
this
;
}
/**
* 设置 结束 排序
* @param sortEnd
*/
public
DeviceMatterDatumQuery
sortEnd
(
Integer
sortEnd
){
this
.
sortEnd
=
sortEnd
;
return
this
;
}
/**
* 设置 增加 排序
* @param sortIncrement
*/
public
DeviceMatterDatumQuery
sortIncrement
(
Integer
sortIncrement
){
this
.
sortIncrement
=
sortIncrement
;
return
this
;
}
/**
* 设置 排序
* @param sortList
*/
public
DeviceMatterDatumQuery
sortList
(
List
<
Integer
>
sortList
){
this
.
sortList
=
sortList
;
return
this
;
}
/**
* 设置 排序
* @param sortNotList
*/
public
DeviceMatterDatumQuery
sortNotList
(
List
<
Integer
>
sortNotList
){
this
.
sortNotList
=
sortNotList
;
return
this
;
}
/**
* 设置 创建用户
* @param createUserId
*/
public
DeviceMatterDatumQuery
createUserId
(
Long
createUserId
){
setCreateUserId
(
createUserId
);
return
this
;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
public
DeviceMatterDatumQuery
createUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
return
this
;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public
DeviceMatterDatumQuery
createUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
return
this
;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public
DeviceMatterDatumQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
return
this
;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
public
DeviceMatterDatumQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
return
this
;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public
DeviceMatterDatumQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
return
this
;
}
/**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList
*/
public
List
<
DeviceMatterDatumQuery
>
getOrConditionList
(){
return
this
.
orConditionList
;
}
/**
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @param orConditionList
*/
public
void
setOrConditionList
(
List
<
DeviceMatterDatumQuery
>
orConditionList
){
this
.
orConditionList
=
orConditionList
;
}
/**
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList
*/
public
List
<
DeviceMatterDatumQuery
>
getAndConditionList
(){
return
this
.
andConditionList
;
}
/**
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList
*/
public
void
setAndConditionList
(
List
<
DeviceMatterDatumQuery
>
andConditionList
){
this
.
andConditionList
=
andConditionList
;
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceQuery.java
View file @
1c185a09
...
...
@@ -3,11 +3,11 @@ package com.mortals.xhx.module.device.model;
import
java.util.List
;
/**
* 设备查询对象
*
* @author zxfei
* @date 2022-08-22
*/
* 设备查询对象
*
* @author zxfei
* @date 2023-02-25
*/
public
class
DeviceQuery
extends
DeviceEntity
{
/** 开始 主键ID,主键,自增长 */
private
Long
idStart
;
...
...
@@ -21,99 +21,74 @@ public class DeviceQuery extends DeviceEntity {
/** 主键ID,主键,自增长列表 */
private
List
<
Long
>
idList
;
/** 主键ID,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 开始 设备id */
private
Long
deviceIdStart
;
/** 结束 设备id */
private
Long
deviceIdEnd
;
/** 增加 设备id */
private
Long
deviceIdIncrement
;
/** 设备id列表 */
private
List
<
Long
>
deviceIdList
;
/** 设备id排除列表 */
private
List
<
Long
>
deviceIdNotList
;
/** 设备名称 */
private
List
<
String
>
deviceNameList
;
/** 设备编码,SN码等,默认为MAC地址 */
/** 设备名称排除列表 */
private
List
<
String
>
deviceNameNotList
;
/** 设备编码 */
private
List
<
String
>
deviceCodeList
;
/** 设备SN码 */
private
List
<
String
>
deviceSNList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceCodeNotList
;
/** 设备的MAC地址 */
private
List
<
String
>
deviceMacList
;
/** 开始 站点Id,来源基础服务平台 */
/** 设备的MAC地址排除列表 */
private
List
<
String
>
deviceMacNotList
;
/** 开始 站点Id */
private
Long
siteIdStart
;
/** 结束 站点Id
,来源基础服务平台
*/
/** 结束 站点Id */
private
Long
siteIdEnd
;
/** 增加 站点Id
,来源基础服务平台
*/
/** 增加 站点Id */
private
Long
siteIdIncrement
;
/** 站点Id
,来源基础服务平台
列表 */
/** 站点Id列表 */
private
List
<
Long
>
siteIdList
;
/** 站点Id排除列表 */
private
List
<
Long
>
siteIdNotList
;
/** 站点编号,来源基础服务平台 */
private
List
<
String
>
siteCodeList
;
/** 站点编号,来源基础服务平台排除列表 */
private
List
<
String
>
siteCodeNotList
;
/** 站点名称 */
private
List
<
String
>
siteNameList
;
/** 开始 平台系统Id */
private
Long
platformIdStart
;
/** 结束 平台系统Id */
private
Long
platformIdEnd
;
/** 增加 平台系统Id */
private
Long
platformIdIncrement
;
/** 平台系统Id列表 */
private
List
<
Long
>
platformIdList
;
/** 平台系统名称 */
private
List
<
String
>
platformNameList
;
/** 开始 产品Id */
private
Long
productIdStart
;
/** 结束 产品Id */
private
Long
productIdEnd
;
/** 增加 产品Id */
private
Long
productIdIncrement
;
/** 产品Id列表 */
private
List
<
Long
>
productIdList
;
/** 站点名称排除列表 */
private
List
<
String
>
siteNameNotList
;
/** 产品编码 */
private
List
<
String
>
productCodeList
;
/** 产品编码排除列表 */
private
List
<
String
>
productCodeNotList
;
/** 产品名称 */
private
List
<
String
>
productNameList
;
/** 开始 皮肤id */
private
Long
skinIdStart
;
/** 结束 皮肤id */
private
Long
skinIdEnd
;
/** 增加 皮肤id */
private
Long
skinIdIncrement
;
/** 皮肤id列表 */
private
List
<
Long
>
skinIdList
;
/** 皮肤名称 */
private
List
<
String
>
skinNameList
;
/** 首页地址 */
private
List
<
String
>
homeUrlList
;
/** 开始 设备生产厂商ID */
private
Long
deviceFirmIdStart
;
/** 结束 设备生产厂商ID */
private
Long
deviceFirmIdEnd
;
/** 增加 设备生产厂商ID */
private
Long
deviceFirmIdIncrement
;
/** 设备生产厂商ID列表 */
private
List
<
Long
>
deviceFirmIdList
;
/** 设备生产厂商名称 */
private
List
<
String
>
deviceFirmnameList
;
/** 产品名称排除列表 */
private
List
<
String
>
productNameNotList
;
/** 开始 设备来源(0.子设备,1.网关设备,2.直连设备) */
private
Integer
deviceSrcStart
;
...
...
@@ -126,87 +101,29 @@ public class DeviceQuery extends DeviceEntity {
/** 设备来源(0.子设备,1.网关设备,2.直连设备)列表 */
private
List
<
Integer
>
deviceSrcList
;
/** 开始 数据获取方式(0.主动上报,1.被动拉取) */
private
Integer
deviceDataSourceWayStart
;
/** 结束 数据获取方式(0.主动上报,1.被动拉取) */
private
Integer
deviceDataSourceWayEnd
;
/** 增加 数据获取方式(0.主动上报,1.被动拉取) */
private
Integer
deviceDataSourceWayIncrement
;
/** 数据获取方式(0.主动上报,1.被动拉取)列表 */
private
List
<
Integer
>
deviceDataSourceWayList
;
/** 设备来源(0.子设备,1.网关设备,2.直连设备)排除列表 */
private
List
<
Integer
>
deviceSrcNotList
;
/** 经度 */
private
List
<
String
>
lonList
;
/** 经度 */
/** 经度排除列表 */
private
List
<
String
>
lonNotList
;
/** 纬度 */
private
List
<
String
>
latiList
;
/** 开始 所属楼栋 */
private
Integer
deviceInBuildingStart
;
/** 结束 所属楼栋 */
private
Integer
deviceInBuildingEnd
;
/** 增加 所属楼栋 */
private
Integer
deviceInBuildingIncrement
;
/** 所属楼栋列表 */
private
List
<
Integer
>
deviceInBuildingList
;
/** 开始 所属楼层 */
private
Integer
deviceInFloorStart
;
/** 结束 所属楼层 */
private
Integer
deviceInFloorEnd
;
/** 增加 所属楼层 */
private
Integer
deviceInFloorIncrement
;
/** 所属楼层列表 */
private
List
<
Integer
>
deviceInFloorList
;
/** 开始 保修期至 */
private
String
defectsLiabilityPeriodStart
;
/** 结束 保修期至 */
private
String
defectsLiabilityPeriodEnd
;
/** 纬度排除列表 */
private
List
<
String
>
latiNotList
;
/** 负责人 */
private
List
<
String
>
leadingOfficialList
;
/** 负责人排除列表 */
private
List
<
String
>
leadingOfficialNotList
;
/** 联系电话 */
private
List
<
String
>
leadingOfficialTelephoneList
;
/** 开始 是否接收异常短(0.否,1.是) */
private
Integer
isReceiveMessStart
;
/** 结束 是否接收异常短(0.否,1.是) */
private
Integer
isReceiveMessEnd
;
/** 增加 是否接收异常短(0.否,1.是) */
private
Integer
isReceiveMessIncrement
;
/** 是否接收异常短(0.否,1.是)列表 */
private
List
<
Integer
>
isReceiveMessList
;
/** 设备图片 */
private
List
<
String
>
devicePhotoPathList
;
/** 设备访问ip */
private
List
<
String
>
ipList
;
/** 中心设备编码 */
private
List
<
String
>
centernumList
;
/** 端口 */
private
List
<
String
>
portList
;
/** 设备topic信息 */
private
List
<
String
>
deviceTopicList
;
/** 联系电话排除列表 */
private
List
<
String
>
leadingOfficialTelephoneNotList
;
/** 开始 设备状态 (0.未激活,1.离线,2.在线) */
private
Integer
deviceStatusStart
;
...
...
@@ -219,51 +136,14 @@ public class DeviceQuery extends DeviceEntity {
/** 设备状态 (0.未激活,1.离线,2.在线)列表 */
private
List
<
Integer
>
deviceStatusList
;
/** 开始 启用状态 (0.停止,1.启用) */
private
Integer
enabledStart
;
/** 结束 启用状态 (0.停止,1.启用) */
private
Integer
enabledEnd
;
/** 增加 启用状态 (0.停止,1.启用) */
private
Integer
enabledIncrement
;
/** 启用状态 (0.停止,1.启用)列表 */
private
List
<
Integer
>
enabledList
;
/** 设备授权码 */
private
List
<
String
>
deviceAuthCodeList
;
/** 设备状态 (0.未激活,1.离线,2.在线)排除列表 */
private
List
<
Integer
>
deviceStatusNotList
;
/** 备注 */
private
List
<
String
>
deviceRemarkList
;
/** 开始 最近上线时间 */
private
String
onlineTimeStart
;
/** 结束 最近上线时间 */
private
String
onlineTimeEnd
;
/** 开始 最近离线时间 */
private
String
offlineTimeStart
;
/** 结束 最近离线时间 */
private
String
offlineTimeEnd
;
/** 开始 是否删除(0.否,1.是) */
private
Integer
deletedStart
;
/** 结束 是否删除(0.否,1.是) */
private
Integer
deletedEnd
;
/** 增加 是否删除(0.否,1.是) */
private
Integer
deletedIncrement
;
/** 是否删除(0.否,1.是)列表 */
private
List
<
Integer
>
deletedList
;
/** 设备版本 */
private
List
<
String
>
deviceVersionList
;
/** 备注排除列表 */
private
List
<
String
>
deviceRemarkNotList
;
/** 开始 设备来源(0.旧设备,1.新设备) */
private
Integer
sourceStart
;
...
...
@@ -276,6 +156,9 @@ public class DeviceQuery extends DeviceEntity {
/** 设备来源(0.旧设备,1.新设备)列表 */
private
List
<
Integer
>
sourceList
;
/** 设备来源(0.旧设备,1.新设备)排除列表 */
private
List
<
Integer
>
sourceNotList
;
/** 开始 创建用户 */
private
Long
createUserIdStart
;
...
...
@@ -288,6 +171,9 @@ public class DeviceQuery extends DeviceEntity {
/** 创建用户列表 */
private
List
<
Long
>
createUserIdList
;
/** 创建用户排除列表 */
private
List
<
Long
>
createUserIdNotList
;
/** 开始 创建时间 */
private
String
createTimeStart
;
...
...
@@ -306,6 +192,9 @@ public class DeviceQuery extends DeviceEntity {
/** 更新用户列表 */
private
List
<
Long
>
updateUserIdList
;
/** 更新用户排除列表 */
private
List
<
Long
>
updateUserIdNotList
;
/** 开始 更新时间 */
private
String
updateTimeStart
;
...
...
@@ -384,6 +273,104 @@ public class DeviceQuery extends DeviceEntity {
this
.
idList
=
idList
;
}
/**
* 获取 主键ID,主键,自增长
* @return idNotList
*/
public
List
<
Long
>
getIdNotList
(){
return
this
.
idNotList
;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
}
/**
* 获取 开始 设备id
* @return deviceIdStart
*/
public
Long
getDeviceIdStart
(){
return
this
.
deviceIdStart
;
}
/**
* 设置 开始 设备id
* @param deviceIdStart
*/
public
void
setDeviceIdStart
(
Long
deviceIdStart
){
this
.
deviceIdStart
=
deviceIdStart
;
}
/**
* 获取 结束 设备id
* @return $deviceIdEnd
*/
public
Long
getDeviceIdEnd
(){
return
this
.
deviceIdEnd
;
}
/**
* 设置 结束 设备id
* @param deviceIdEnd
*/
public
void
setDeviceIdEnd
(
Long
deviceIdEnd
){
this
.
deviceIdEnd
=
deviceIdEnd
;
}
/**
* 获取 增加 设备id
* @return deviceIdIncrement
*/
public
Long
getDeviceIdIncrement
(){
return
this
.
deviceIdIncrement
;
}
/**
* 设置 增加 设备id
* @param deviceIdIncrement
*/
public
void
setDeviceIdIncrement
(
Long
deviceIdIncrement
){
this
.
deviceIdIncrement
=
deviceIdIncrement
;
}
/**
* 获取 设备id
* @return deviceIdList
*/
public
List
<
Long
>
getDeviceIdList
(){
return
this
.
deviceIdList
;
}
/**
* 设置 设备id
* @param deviceIdList
*/
public
void
setDeviceIdList
(
List
<
Long
>
deviceIdList
){
this
.
deviceIdList
=
deviceIdList
;
}
/**
* 获取 设备id
* @return deviceIdNotList
*/
public
List
<
Long
>
getDeviceIdNotList
(){
return
this
.
deviceIdNotList
;
}
/**
* 设置 设备id
* @param deviceIdNotList
*/
public
void
setDeviceIdNotList
(
List
<
Long
>
deviceIdNotList
){
this
.
deviceIdNotList
=
deviceIdNotList
;
}
/**
* 获取 设备名称
* @return deviceNameList
...
...
@@ -399,8 +386,25 @@ public class DeviceQuery extends DeviceEntity {
public
void
setDeviceNameList
(
List
<
String
>
deviceNameList
){
this
.
deviceNameList
=
deviceNameList
;
}
/**
* 获取 设备名称
* @return deviceNameNotList
*/
public
List
<
String
>
getDeviceNameNotList
(){
return
this
.
deviceNameNotList
;
}
/**
* 设置 设备名称
* @param deviceNameNotList
*/
public
void
setDeviceNameNotList
(
List
<
String
>
deviceNameNotList
){
this
.
deviceNameNotList
=
deviceNameNotList
;
}
/**
* 获取 设备编码,SN码等,默认为MAC地址
* 获取 设备编码
* @return deviceCodeList
*/
public
List
<
String
>
getDeviceCodeList
(){
...
...
@@ -408,27 +412,29 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* 设置 设备编码
* @param deviceCodeList
*/
public
void
setDeviceCodeList
(
List
<
String
>
deviceCodeList
){
this
.
deviceCodeList
=
deviceCodeList
;
}
/**
* 获取 设备SN
码
* @return deviceSN
List
* 获取 设备编
码
* @return deviceCodeNot
List
*/
public
List
<
String
>
getDevice
SN
List
(){
return
this
.
device
SN
List
;
public
List
<
String
>
getDevice
CodeNot
List
(){
return
this
.
device
CodeNot
List
;
}
/**
* 设置 设备SN
码
* @param deviceSN
List
* 设置 设备编
码
* @param deviceCodeNot
List
*/
public
void
setDevice
SNList
(
List
<
String
>
deviceSN
List
){
this
.
device
SNList
=
deviceSN
List
;
public
void
setDevice
CodeNotList
(
List
<
String
>
deviceCodeNot
List
){
this
.
device
CodeNotList
=
deviceCodeNot
List
;
}
/**
* 获取 设备的MAC地址
* @return deviceMacList
...
...
@@ -444,8 +450,25 @@ public class DeviceQuery extends DeviceEntity {
public
void
setDeviceMacList
(
List
<
String
>
deviceMacList
){
this
.
deviceMacList
=
deviceMacList
;
}
/**
* 获取 设备的MAC地址
* @return deviceMacNotList
*/
public
List
<
String
>
getDeviceMacNotList
(){
return
this
.
deviceMacNotList
;
}
/**
* 设置 设备的MAC地址
* @param deviceMacNotList
*/
public
void
setDeviceMacNotList
(
List
<
String
>
deviceMacNotList
){
this
.
deviceMacNotList
=
deviceMacNotList
;
}
/**
* 获取 开始 站点Id,来源基础服务平台
* 获取 开始 站点Id
* @return siteIdStart
*/
public
Long
getSiteIdStart
(){
...
...
@@ -453,7 +476,7 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 设置 开始 站点Id,来源基础服务平台
* 设置 开始 站点Id
* @param siteIdStart
*/
public
void
setSiteIdStart
(
Long
siteIdStart
){
...
...
@@ -461,7 +484,7 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 获取 结束 站点Id,来源基础服务平台
* 获取 结束 站点Id
* @return $siteIdEnd
*/
public
Long
getSiteIdEnd
(){
...
...
@@ -469,7 +492,7 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 设置 结束 站点Id,来源基础服务平台
* 设置 结束 站点Id
* @param siteIdEnd
*/
public
void
setSiteIdEnd
(
Long
siteIdEnd
){
...
...
@@ -477,7 +500,7 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 获取 增加 站点Id,来源基础服务平台
* 获取 增加 站点Id
* @return siteIdIncrement
*/
public
Long
getSiteIdIncrement
(){
...
...
@@ -485,7 +508,7 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 设置 增加 站点Id,来源基础服务平台
* 设置 增加 站点Id
* @param siteIdIncrement
*/
public
void
setSiteIdIncrement
(
Long
siteIdIncrement
){
...
...
@@ -493,7 +516,7 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 获取 站点Id,来源基础服务平台
* 获取 站点Id
* @return siteIdList
*/
public
List
<
Long
>
getSiteIdList
(){
...
...
@@ -501,13 +524,30 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 设置 站点Id,来源基础服务平台
* 设置 站点Id
* @param siteIdList
*/
public
void
setSiteIdList
(
List
<
Long
>
siteIdList
){
this
.
siteIdList
=
siteIdList
;
}
/**
* 获取 站点Id
* @return siteIdNotList
*/
public
List
<
Long
>
getSiteIdNotList
(){
return
this
.
siteIdNotList
;
}
/**
* 设置 站点Id
* @param siteIdNotList
*/
public
void
setSiteIdNotList
(
List
<
Long
>
siteIdNotList
){
this
.
siteIdNotList
=
siteIdNotList
;
}
/**
* 获取 站点编号,来源基础服务平台
* @return siteCodeList
...
...
@@ -523,6 +563,23 @@ public class DeviceQuery extends DeviceEntity {
public
void
setSiteCodeList
(
List
<
String
>
siteCodeList
){
this
.
siteCodeList
=
siteCodeList
;
}
/**
* 获取 站点编号,来源基础服务平台
* @return siteCodeNotList
*/
public
List
<
String
>
getSiteCodeNotList
(){
return
this
.
siteCodeNotList
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeNotList
*/
public
void
setSiteCodeNotList
(
List
<
String
>
siteCodeNotList
){
this
.
siteCodeNotList
=
siteCodeNotList
;
}
/**
* 获取 站点名称
* @return siteNameList
...
...
@@ -538,2254 +595,1138 @@ public class DeviceQuery extends DeviceEntity {
public
void
setSiteNameList
(
List
<
String
>
siteNameList
){
this
.
siteNameList
=
siteNameList
;
}
/**
* 获取 开始 平台系统Id
* @return platformIdStart
*/
public
Long
getPlatformIdStart
(){
return
this
.
platformIdStart
;
}
/**
* 设置 开始 平台系统Id
* @param platformIdStar
t
* 获取 站点名称
* @return siteNameNotLis
t
*/
public
void
setPlatformIdStart
(
Long
platformIdStart
){
this
.
platformIdStart
=
platformIdStar
t
;
public
List
<
String
>
getSiteNameNotList
(
){
return
this
.
siteNameNotLis
t
;
}
/**
* 获取 结束 平台系统Id
* @return $platformIdEnd
* 设置 站点名称
* @param siteNameNotList
*/
public
Long
getPlatformIdEnd
(
){
return
this
.
platformIdEnd
;
public
void
setSiteNameNotList
(
List
<
String
>
siteNameNotList
){
this
.
siteNameNotList
=
siteNameNotList
;
}
/**
* 设置 结束 平台系统Id
* @param platformIdEnd
* 获取 产品编码
* @return productCodeList
*/
public
void
setPlatformIdEnd
(
Long
platformIdEnd
){
this
.
platformIdEnd
=
platformIdEnd
;
public
List
<
String
>
getProductCodeList
(
){
return
this
.
productCodeList
;
}
/**
* 获取 增加 平台系统Id
* @return platformIdIncremen
t
* 设置 产品编码
* @param productCodeLis
t
*/
public
Long
getPlatformIdIncrement
(
){
return
this
.
platformIdIncremen
t
;
public
void
setProductCodeList
(
List
<
String
>
productCodeList
){
this
.
productCodeList
=
productCodeLis
t
;
}
/**
* 设置 增加 平台系统Id
* @param platformIdIncremen
t
* 获取 产品编码
* @return productCodeNotLis
t
*/
public
void
setPlatformIdIncrement
(
Long
platformIdIncrement
){
this
.
platformIdIncrement
=
platformIdIncremen
t
;
public
List
<
String
>
getProductCodeNotList
(
){
return
this
.
productCodeNotLis
t
;
}
/**
* 获取 平台系统Id
* @return platformId
List
* 设置 产品编码
* @param productCodeNot
List
*/
public
List
<
Long
>
getPlatformIdList
(
){
return
this
.
platformId
List
;
public
void
setProductCodeNotList
(
List
<
String
>
productCodeNotList
){
this
.
productCodeNotList
=
productCodeNot
List
;
}
/**
* 设置 平台系统Id
* @param platformId
List
* 获取 产品名称
* @return productName
List
*/
public
void
setPlatformIdList
(
List
<
Long
>
platformIdList
){
this
.
platformIdList
=
platformId
List
;
public
List
<
String
>
getProductNameList
(
){
return
this
.
productName
List
;
}
/**
* 获取 平台系统
名称
* @return platform
NameList
* 设置 产品
名称
* @param product
NameList
*/
public
List
<
String
>
getPlatformNameList
(
){
return
this
.
platform
NameList
;
public
void
setProductNameList
(
List
<
String
>
productNameList
){
this
.
productNameList
=
product
NameList
;
}
/**
* 设置 平台系统
名称
* @param platformName
List
* 获取 产品
名称
* @return productNameNot
List
*/
public
void
setPlatformNameList
(
List
<
String
>
platformNameList
){
this
.
platformNameList
=
platformName
List
;
public
List
<
String
>
getProductNameNotList
(
){
return
this
.
productNameNot
List
;
}
/**
* 获取 开始 产品Id
* @return productIdStar
t
* 设置 产品名称
* @param productNameNotLis
t
*/
public
Long
getProductIdStart
(
){
return
this
.
productIdStar
t
;
public
void
setProductNameNotList
(
List
<
String
>
productNameNotList
){
this
.
productNameNotList
=
productNameNotLis
t
;
}
/**
* 设置 开始 产品Id
* @param productId
Start
* 获取 开始 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrc
Start
*/
public
void
setProductIdStart
(
Long
productIdStart
){
this
.
productIdStart
=
productId
Start
;
public
Integer
getDeviceSrcStart
(
){
return
this
.
deviceSrc
Start
;
}
/**
* 获取 结束 产品Id
* @return $productIdEnd
* 设置 开始 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcStart
*/
public
Long
getProductIdEnd
(
){
return
this
.
productIdEnd
;
public
void
setDeviceSrcStart
(
Integer
deviceSrcStart
){
this
.
deviceSrcStart
=
deviceSrcStart
;
}
/**
* 设置 结束 产品Id
* @param productId
End
* 获取 结束 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return $deviceSrc
End
*/
public
void
setProductIdEnd
(
Long
productIdEnd
){
this
.
productIdEnd
=
productId
End
;
public
Integer
getDeviceSrcEnd
(
){
return
this
.
deviceSrc
End
;
}
/**
* 获取 增加 产品Id
* @return productIdIncrement
* 设置 结束 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcEnd
*/
public
Long
getProductIdIncrement
(
){
return
this
.
productIdIncrement
;
public
void
setDeviceSrcEnd
(
Integer
deviceSrcEnd
){
this
.
deviceSrcEnd
=
deviceSrcEnd
;
}
/**
* 设置 增加 产品Id
* @param productId
Increment
* 获取 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrc
Increment
*/
public
void
setProductIdIncrement
(
Long
productIdIncrement
){
this
.
productIdIncrement
=
productId
Increment
;
public
Integer
getDeviceSrcIncrement
(
){
return
this
.
deviceSrc
Increment
;
}
/**
* 获取 产品Id
* @return productIdLis
t
* 设置 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcIncremen
t
*/
public
List
<
Long
>
getProductIdList
(
){
return
this
.
productIdLis
t
;
public
void
setDeviceSrcIncrement
(
Integer
deviceSrcIncrement
){
this
.
deviceSrcIncrement
=
deviceSrcIncremen
t
;
}
/**
* 设置 产品Id
* @param productId
List
* 获取 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrc
List
*/
public
void
setProductIdList
(
List
<
Long
>
productIdList
){
this
.
productIdList
=
productId
List
;
public
List
<
Integer
>
getDeviceSrcList
(
){
return
this
.
deviceSrc
List
;
}
/**
* 获取 产品名称
* @return productName
List
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrc
List
*/
public
List
<
String
>
getProductNameList
(
){
return
this
.
productName
List
;
public
void
setDeviceSrcList
(
List
<
Integer
>
deviceSrcList
){
this
.
deviceSrcList
=
deviceSrc
List
;
}
/**
* 设置 产品名称
* @param productName
List
* 获取 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrcNot
List
*/
public
void
setProductNameList
(
List
<
String
>
productNameList
){
this
.
productNameList
=
productName
List
;
public
List
<
Integer
>
getDeviceSrcNotList
(
){
return
this
.
deviceSrcNot
List
;
}
/**
* 获取 开始 皮肤id
* @return skinIdStar
t
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcNotLis
t
*/
public
Long
getSkinIdStart
(
){
return
this
.
skinIdStar
t
;
public
void
setDeviceSrcNotList
(
List
<
Integer
>
deviceSrcNotList
){
this
.
deviceSrcNotList
=
deviceSrcNotLis
t
;
}
/**
* 设置 开始 皮肤id
* @param skinIdStar
t
* 获取 经度
* @return lonLis
t
*/
public
void
setSkinIdStart
(
Long
skinIdStart
){
this
.
skinIdStart
=
skinIdStar
t
;
public
List
<
String
>
getLonList
(
){
return
this
.
lonLis
t
;
}
/**
* 获取 结束 皮肤id
* @return $skinIdEnd
* 设置 经度
* @param lonList
*/
public
Long
getSkinIdEnd
(
){
return
this
.
skinIdEnd
;
public
void
setLonList
(
List
<
String
>
lonList
){
this
.
lonList
=
lonList
;
}
/**
* 设置 结束 皮肤id
* @param skinIdEnd
* 获取 经度
* @return lonNotList
*/
public
void
setSkinIdEnd
(
Long
skinIdEnd
){
this
.
skinIdEnd
=
skinIdEnd
;
public
List
<
String
>
getLonNotList
(
){
return
this
.
lonNotList
;
}
/**
* 获取 增加 皮肤id
* @return skinIdIncremen
t
* 设置 经度
* @param lonNotLis
t
*/
public
Long
getSkinIdIncrement
(
){
return
this
.
skinIdIncremen
t
;
public
void
setLonNotList
(
List
<
String
>
lonNotList
){
this
.
lonNotList
=
lonNotLis
t
;
}
/**
* 设置 增加 皮肤id
* @param skinIdIncremen
t
* 获取 纬度
* @return latiLis
t
*/
public
void
setSkinIdIncrement
(
Long
skinIdIncrement
){
this
.
skinIdIncrement
=
skinIdIncremen
t
;
public
List
<
String
>
getLatiList
(
){
return
this
.
latiLis
t
;
}
/**
* 获取 皮肤id
* @return skinId
List
* 设置 纬度
* @param lati
List
*/
public
List
<
Long
>
getSkinIdList
(
){
return
this
.
skinId
List
;
public
void
setLatiList
(
List
<
String
>
latiList
){
this
.
latiList
=
lati
List
;
}
/**
* 设置 皮肤id
* @param skinId
List
* 获取 纬度
* @return latiNot
List
*/
public
void
setSkinIdList
(
List
<
Long
>
skinIdList
){
this
.
skinIdList
=
skinId
List
;
public
List
<
String
>
getLatiNotList
(
){
return
this
.
latiNot
List
;
}
/**
* 获取 皮肤名称
* @return skinName
List
* 设置 纬度
* @param latiNot
List
*/
public
List
<
String
>
getSkinNameList
(
){
return
this
.
skinName
List
;
public
void
setLatiNotList
(
List
<
String
>
latiNotList
){
this
.
latiNotList
=
latiNot
List
;
}
/**
* 设置 皮肤名称
* @param skinName
List
* 获取 负责人
* @return leadingOfficial
List
*/
public
void
setSkinNameList
(
List
<
String
>
skinNameList
){
this
.
skinNameList
=
skinName
List
;
public
List
<
String
>
getLeadingOfficialList
(
){
return
this
.
leadingOfficial
List
;
}
/**
* 获取 首页地址
* @return homeUr
lList
* 设置 负责人
* @param leadingOfficia
lList
*/
public
List
<
String
>
getHomeUrlList
(
){
return
this
.
homeUr
lList
;
public
void
setLeadingOfficialList
(
List
<
String
>
leadingOfficialList
){
this
.
leadingOfficialList
=
leadingOfficia
lList
;
}
/**
* 设置 首页地址
* @param homeUrl
List
* 获取 负责人
* @return leadingOfficialNot
List
*/
public
void
setHomeUrlList
(
List
<
String
>
homeUrlList
){
this
.
homeUrlList
=
homeUrl
List
;
public
List
<
String
>
getLeadingOfficialNotList
(
){
return
this
.
leadingOfficialNot
List
;
}
/**
* 获取 开始 设备生产厂商ID
* @return deviceFirmIdStar
t
* 设置 负责人
* @param leadingOfficialNotLis
t
*/
public
Long
getDeviceFirmIdStart
(
){
return
this
.
deviceFirmIdStar
t
;
public
void
setLeadingOfficialNotList
(
List
<
String
>
leadingOfficialNotList
){
this
.
leadingOfficialNotList
=
leadingOfficialNotLis
t
;
}
/**
* 设置 开始 设备生产厂商ID
* @param deviceFirmIdStar
t
* 获取 联系电话
* @return leadingOfficialTelephoneLis
t
*/
public
void
setDeviceFirmIdStart
(
Long
deviceFirmIdStart
){
this
.
deviceFirmIdStart
=
deviceFirmIdStar
t
;
public
List
<
String
>
getLeadingOfficialTelephoneList
(
){
return
this
.
leadingOfficialTelephoneLis
t
;
}
/**
* 获取 结束 设备生产厂商ID
* @return $deviceFirmIdEnd
*/
public
Long
getDeviceFirmIdEnd
(){
return
this
.
deviceFirmIdEnd
;
}
/**
* 设置 结束 设备生产厂商ID
* @param deviceFirmIdEnd
* 设置 联系电话
* @param leadingOfficialTelephoneList
*/
public
void
set
DeviceFirmIdEnd
(
Long
deviceFirmIdEnd
){
this
.
deviceFirmIdEnd
=
deviceFirmIdEnd
;
public
void
set
LeadingOfficialTelephoneList
(
List
<
String
>
leadingOfficialTelephoneList
){
this
.
leadingOfficialTelephoneList
=
leadingOfficialTelephoneList
;
}
/**
* 获取 增加 设备生产厂商ID
* @return deviceFirmIdIncremen
t
* 获取 联系电话
* @return leadingOfficialTelephoneNotLis
t
*/
public
L
ong
getDeviceFirmIdIncremen
t
(){
return
this
.
deviceFirmIdIncremen
t
;
public
L
ist
<
String
>
getLeadingOfficialTelephoneNotLis
t
(){
return
this
.
leadingOfficialTelephoneNotLis
t
;
}
/**
* 设置 增加 设备生产厂商ID
* @param deviceFirmIdIncremen
t
* 设置 联系电话
* @param leadingOfficialTelephoneNotLis
t
*/
public
void
set
DeviceFirmIdIncrement
(
Long
deviceFirmIdIncremen
t
){
this
.
deviceFirmIdIncrement
=
deviceFirmIdIncremen
t
;
public
void
set
LeadingOfficialTelephoneNotList
(
List
<
String
>
leadingOfficialTelephoneNotLis
t
){
this
.
leadingOfficialTelephoneNotList
=
leadingOfficialTelephoneNotLis
t
;
}
/**
* 获取 设备生产厂商ID
* @return deviceFirmIdLis
t
* 获取 开始 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusStar
t
*/
public
List
<
Long
>
getDeviceFirmIdLis
t
(){
return
this
.
device
FirmIdLis
t
;
public
Integer
getDeviceStatusStar
t
(){
return
this
.
device
StatusStar
t
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmIdLis
t
* 设置 开始 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusStar
t
*/
public
void
setDevice
FirmIdList
(
List
<
Long
>
deviceFirmIdLis
t
){
this
.
device
FirmIdList
=
deviceFirmIdLis
t
;
public
void
setDevice
StatusStart
(
Integer
deviceStatusStar
t
){
this
.
device
StatusStart
=
deviceStatusStar
t
;
}
/**
* 获取 设备生产厂商名称
* @return deviceFirmnameList
* 获取 结束 设备状态 (0.未激活,1.离线,2.在线)
* @return $deviceStatusEnd
*/
public
List
<
String
>
getDeviceFirmnameList
(){
return
this
.
device
FirmnameList
;
public
Integer
getDeviceStatusEnd
(){
return
this
.
device
StatusEnd
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmnameList
* 设置 结束 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusEnd
*/
public
void
setDevice
FirmnameList
(
List
<
String
>
deviceFirmnameList
){
this
.
device
FirmnameList
=
deviceFirmnameList
;
public
void
setDevice
StatusEnd
(
Integer
deviceStatusEnd
){
this
.
device
StatusEnd
=
deviceStatusEnd
;
}
/**
* 获取 开始 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @return deviceSrcStar
t
* 获取 增加 设备状态 (0.未激活,1.离线,2.在线
)
* @return deviceStatusIncremen
t
*/
public
Integer
getDeviceS
rcStar
t
(){
return
this
.
deviceS
rcStar
t
;
public
Integer
getDeviceS
tatusIncremen
t
(){
return
this
.
deviceS
tatusIncremen
t
;
}
/**
* 设置 开始 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @param deviceSrcStar
t
* 设置 增加 设备状态 (0.未激活,1.离线,2.在线
)
* @param deviceStatusIncremen
t
*/
public
void
setDeviceS
rcStart
(
Integer
deviceSrcStar
t
){
this
.
deviceS
rcStart
=
deviceSrcStar
t
;
public
void
setDeviceS
tatusIncrement
(
Integer
deviceStatusIncremen
t
){
this
.
deviceS
tatusIncrement
=
deviceStatusIncremen
t
;
}
/**
* 获取 结束 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @return $deviceSrcEnd
* 获取 设备状态 (0.未激活,1.离线,2.在线
)
* @return deviceStatusList
*/
public
Integer
getDeviceSrcEnd
(){
return
this
.
deviceS
rcEnd
;
public
List
<
Integer
>
getDeviceStatusList
(){
return
this
.
deviceS
tatusList
;
}
/**
* 设置 结束 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @param deviceSrcEnd
* 设置 设备状态 (0.未激活,1.离线,2.在线
)
* @param deviceStatusList
*/
public
void
setDeviceS
rcEnd
(
Integer
deviceSrcEnd
){
this
.
deviceS
rcEnd
=
deviceSrcEnd
;
public
void
setDeviceS
tatusList
(
List
<
Integer
>
deviceStatusList
){
this
.
deviceS
tatusList
=
deviceStatusList
;
}
/**
* 获取 增加 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @return deviceSrcIncremen
t
* 获取 设备状态 (0.未激活,1.离线,2.在线
)
* @return deviceStatusNotLis
t
*/
public
Integer
getDeviceSrcIncremen
t
(){
return
this
.
deviceS
rcIncremen
t
;
public
List
<
Integer
>
getDeviceStatusNotLis
t
(){
return
this
.
deviceS
tatusNotLis
t
;
}
/**
* 设置 增加 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @param deviceSrcIncremen
t
* 设置 设备状态 (0.未激活,1.离线,2.在线
)
* @param deviceStatusNotLis
t
*/
public
void
setDeviceS
rcIncrement
(
Integer
deviceSrcIncremen
t
){
this
.
deviceS
rcIncrement
=
deviceSrcIncremen
t
;
public
void
setDeviceS
tatusNotList
(
List
<
Integer
>
deviceStatusNotLis
t
){
this
.
deviceS
tatusNotList
=
deviceStatusNotLis
t
;
}
/**
* 获取 设备来源(0.子设备,1.网关设备,2.直连设备)
* @return deviceSrc
List
* 获取 备注
* @return deviceRemark
List
*/
public
List
<
Integer
>
getDeviceSrc
List
(){
return
this
.
device
Src
List
;
public
List
<
String
>
getDeviceRemark
List
(){
return
this
.
device
Remark
List
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrc
List
* 设置 备注
* @param deviceRemark
List
*/
public
void
setDevice
SrcList
(
List
<
Integer
>
deviceSrc
List
){
this
.
device
SrcList
=
deviceSrc
List
;
public
void
setDevice
RemarkList
(
List
<
String
>
deviceRemark
List
){
this
.
device
RemarkList
=
deviceRemark
List
;
}
/**
* 获取 开始 数据获取方式(0.主动上报,1.被动拉取)
* @return deviceDataSourceWayStar
t
* 获取 备注
* @return deviceRemarkNotLis
t
*/
public
Integer
getDeviceDataSourceWayStar
t
(){
return
this
.
device
DataSourceWayStar
t
;
public
List
<
String
>
getDeviceRemarkNotLis
t
(){
return
this
.
device
RemarkNotLis
t
;
}
/**
* 设置 开始 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayStar
t
* 设置 备注
* @param deviceRemarkNotLis
t
*/
public
void
setDevice
DataSourceWayStart
(
Integer
deviceDataSourceWayStar
t
){
this
.
device
DataSourceWayStart
=
deviceDataSourceWayStar
t
;
public
void
setDevice
RemarkNotList
(
List
<
String
>
deviceRemarkNotLis
t
){
this
.
device
RemarkNotList
=
deviceRemarkNotLis
t
;
}
/**
* 获取 结束 数据获取方式(0.主动上报,1.被动拉取
)
* @return $deviceDataSourceWayEnd
* 获取 开始 设备来源(0.旧设备,1.新设备
)
* @return sourceStart
*/
public
Integer
get
DeviceDataSourceWayEnd
(){
return
this
.
deviceDataSourceWayEnd
;
public
Integer
get
SourceStart
(){
return
this
.
sourceStart
;
}
/**
* 设置 结束 数据获取方式(0.主动上报,1.被动拉取
)
* @param deviceDataSourceWayEnd
* 设置 开始 设备来源(0.旧设备,1.新设备
)
* @param sourceStart
*/
public
void
set
DeviceDataSourceWayEnd
(
Integer
deviceDataSourceWayEnd
){
this
.
deviceDataSourceWayEnd
=
deviceDataSourceWayEnd
;
public
void
set
SourceStart
(
Integer
sourceStart
){
this
.
sourceStart
=
sourceStart
;
}
/**
* 获取 增加 数据获取方式(0.主动上报,1.被动拉取
)
* @return deviceDataSourceWayIncrement
* 获取 结束 设备来源(0.旧设备,1.新设备
)
* @return $sourceEnd
*/
public
Integer
get
DeviceDataSourceWayIncrement
(){
return
this
.
deviceDataSourceWayIncrement
;
public
Integer
get
SourceEnd
(){
return
this
.
sourceEnd
;
}
/**
* 设置 增加 数据获取方式(0.主动上报,1.被动拉取
)
* @param deviceDataSourceWayIncrement
* 设置 结束 设备来源(0.旧设备,1.新设备
)
* @param sourceEnd
*/
public
void
set
DeviceDataSourceWayIncrement
(
Integer
deviceDataSourceWayIncrement
){
this
.
deviceDataSourceWayIncrement
=
deviceDataSourceWayIncrement
;
public
void
set
SourceEnd
(
Integer
sourceEnd
){
this
.
sourceEnd
=
sourceEnd
;
}
/**
* 获取 数据获取方式(0.主动上报,1.被动拉取
)
* @return deviceDataSourceWayLis
t
* 获取 增加 设备来源(0.旧设备,1.新设备
)
* @return sourceIncremen
t
*/
public
List
<
Integer
>
getDeviceDataSourceWayLis
t
(){
return
this
.
deviceDataSourceWayLis
t
;
public
Integer
getSourceIncremen
t
(){
return
this
.
sourceIncremen
t
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取
)
* @param deviceDataSourceWayLis
t
* 设置 增加 设备来源(0.旧设备,1.新设备
)
* @param sourceIncremen
t
*/
public
void
set
DeviceDataSourceWayList
(
List
<
Integer
>
deviceDataSourceWayLis
t
){
this
.
deviceDataSourceWayList
=
deviceDataSourceWayLis
t
;
public
void
set
SourceIncrement
(
Integer
sourceIncremen
t
){
this
.
sourceIncrement
=
sourceIncremen
t
;
}
/**
* 获取 经度
* @return lon
List
* 获取 设备来源(0.旧设备,1.新设备)
* @return source
List
*/
public
List
<
String
>
getLon
List
(){
return
this
.
lon
List
;
public
List
<
Integer
>
getSource
List
(){
return
this
.
source
List
;
}
/**
* 设置 经度
* @param lon
List
* 设置 设备来源(0.旧设备,1.新设备)
* @param source
List
*/
public
void
set
LonList
(
List
<
String
>
lon
List
){
this
.
lonList
=
lon
List
;
public
void
set
SourceList
(
List
<
Integer
>
source
List
){
this
.
sourceList
=
source
List
;
}
/**
* 获取 经度
* @return lati
List
* 获取 设备来源(0.旧设备,1.新设备)
* @return sourceNot
List
*/
public
List
<
String
>
getLati
List
(){
return
this
.
lati
List
;
public
List
<
Integer
>
getSourceNot
List
(){
return
this
.
sourceNot
List
;
}
/**
* 设置 经度
* @param lati
List
* 设置 设备来源(0.旧设备,1.新设备)
* @param sourceNot
List
*/
public
void
set
LatiList
(
List
<
String
>
lati
List
){
this
.
latiList
=
lati
List
;
public
void
set
SourceNotList
(
List
<
Integer
>
sourceNot
List
){
this
.
sourceNotList
=
sourceNot
List
;
}
/**
* 获取 开始 所属楼栋
* @return deviceInBuilding
Start
* 获取 开始 创建用户
* @return createUserId
Start
*/
public
Integer
getDeviceInBuilding
Start
(){
return
this
.
deviceInBuilding
Start
;
public
Long
getCreateUserId
Start
(){
return
this
.
createUserId
Start
;
}
/**
* 设置 开始 所属楼栋
* @param deviceInBuilding
Start
* 设置 开始 创建用户
* @param createUserId
Start
*/
public
void
set
DeviceInBuildingStart
(
Integer
deviceInBuilding
Start
){
this
.
deviceInBuildingStart
=
deviceInBuilding
Start
;
public
void
set
CreateUserIdStart
(
Long
createUserId
Start
){
this
.
createUserIdStart
=
createUserId
Start
;
}
/**
* 获取 结束 所属楼栋
* @return $deviceInBuilding
End
* 获取 结束 创建用户
* @return $createUserId
End
*/
public
Integer
getDeviceInBuilding
End
(){
return
this
.
deviceInBuilding
End
;
public
Long
getCreateUserId
End
(){
return
this
.
createUserId
End
;
}
/**
* 设置 结束 所属楼栋
* @param deviceInBuilding
End
* 设置 结束 创建用户
* @param createUserId
End
*/
public
void
set
DeviceInBuildingEnd
(
Integer
deviceInBuilding
End
){
this
.
deviceInBuildingEnd
=
deviceInBuilding
End
;
public
void
set
CreateUserIdEnd
(
Long
createUserId
End
){
this
.
createUserIdEnd
=
createUserId
End
;
}
/**
* 获取 增加 所属楼栋
* @return deviceInBuilding
Increment
* 获取 增加 创建用户
* @return createUserId
Increment
*/
public
Integer
getDeviceInBuilding
Increment
(){
return
this
.
deviceInBuilding
Increment
;
public
Long
getCreateUserId
Increment
(){
return
this
.
createUserId
Increment
;
}
/**
* 设置 增加 所属楼栋
* @param deviceInBuilding
Increment
* 设置 增加 创建用户
* @param createUserId
Increment
*/
public
void
set
DeviceInBuildingIncrement
(
Integer
deviceInBuilding
Increment
){
this
.
deviceInBuildingIncrement
=
deviceInBuilding
Increment
;
public
void
set
CreateUserIdIncrement
(
Long
createUserId
Increment
){
this
.
createUserIdIncrement
=
createUserId
Increment
;
}
/**
* 获取 所属楼栋
* @return deviceInBuilding
List
* 获取 创建用户
* @return createUserId
List
*/
public
List
<
Integer
>
getDeviceInBuilding
List
(){
return
this
.
deviceInBuilding
List
;
public
List
<
Long
>
getCreateUserId
List
(){
return
this
.
createUserId
List
;
}
/**
* 设置 所属楼栋
* @param deviceInBuilding
List
* 设置 创建用户
* @param createUserId
List
*/
public
void
set
DeviceInBuildingList
(
List
<
Integer
>
deviceInBuilding
List
){
this
.
deviceInBuildingList
=
deviceInBuilding
List
;
public
void
set
CreateUserIdList
(
List
<
Long
>
createUserId
List
){
this
.
createUserIdList
=
createUserId
List
;
}
/**
* 获取 开始 所属楼层
* @return deviceInFloorStar
t
* 获取 创建用户
* @return createUserIdNotLis
t
*/
public
Integer
getDeviceInFloorStar
t
(){
return
this
.
deviceInFloorStar
t
;
public
List
<
Long
>
getCreateUserIdNotLis
t
(){
return
this
.
createUserIdNotLis
t
;
}
/**
* 设置 开始 所属楼层
* @param deviceInFloorStar
t
* 设置 创建用户
* @param createUserIdNotLis
t
*/
public
void
set
DeviceInFloorStart
(
Integer
deviceInFloorStar
t
){
this
.
deviceInFloorStart
=
deviceInFloorStar
t
;
public
void
set
CreateUserIdNotList
(
List
<
Long
>
createUserIdNotLis
t
){
this
.
createUserIdNotList
=
createUserIdNotLis
t
;
}
/**
* 获取 结束 所属楼层
* @return $deviceInFloorEnd
* 获取 开始 创建时间
* @return createTimeStart
*/
public
Integer
getDeviceInFloorEnd
(){
return
this
.
deviceInFloorEnd
;
public
String
getCreateTimeStart
(){
return
this
.
createTimeStart
;
}
/**
* 设置 结束 所属楼层
* @param deviceInFloorEnd
* 设置 开始 创建时间
* @param createTimeStart
*/
public
void
set
DeviceInFloorEnd
(
Integer
deviceInFloorEnd
){
this
.
deviceInFloorEnd
=
deviceInFloorEnd
;
public
void
set
CreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStart
;
}
/**
* 获取 增加 所属楼层
* @return deviceInFloorIncrement
* 获取 结束 创建时间
* @return createTimeEnd
*/
public
Integer
getDeviceInFloorIncrement
(){
return
this
.
deviceInFloorIncrement
;
public
String
getCreateTimeEnd
(){
return
this
.
createTimeEnd
;
}
/**
* 设置 增加 所属楼层
* @param deviceInFloorIncrement
* 设置 结束 创建时间
* @param createTimeEnd
*/
public
void
set
DeviceInFloorIncrement
(
Integer
deviceInFloorIncrement
){
this
.
deviceInFloorIncrement
=
deviceInFloorIncrement
;
public
void
set
CreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
}
/**
* 获取 所属楼层
* @return deviceInFloorLis
t
* 获取 开始 更新用户
* @return updateUserIdStar
t
*/
public
L
ist
<
Integer
>
getDeviceInFloorLis
t
(){
return
this
.
deviceInFloorLis
t
;
public
L
ong
getUpdateUserIdStar
t
(){
return
this
.
updateUserIdStar
t
;
}
/**
* 设置 所属楼层
* @param deviceInFloorLis
t
* 设置 开始 更新用户
* @param updateUserIdStar
t
*/
public
void
set
DeviceInFloorList
(
List
<
Integer
>
deviceInFloorLis
t
){
this
.
deviceInFloorList
=
deviceInFloorLis
t
;
public
void
set
UpdateUserIdStart
(
Long
updateUserIdStar
t
){
this
.
updateUserIdStart
=
updateUserIdStar
t
;
}
/**
* 获取 开始 保修期至
* @return defectsLiabilityPeriodStart
* 获取 结束 更新用户
* @return $updateUserIdEnd
*/
public
String
getDefectsLiabilityPeriodStart
(){
return
this
.
defectsLiabilityPeriodStart
;
public
Long
getUpdateUserIdEnd
(){
return
this
.
updateUserIdEnd
;
}
/**
* 设置 开始 保修期至
* @param defectsLiabilityPeriodStart
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
public
void
set
DefectsLiabilityPeriodStart
(
String
defectsLiabilityPeriodStart
){
this
.
defectsLiabilityPeriodStart
=
defectsLiabilityPeriodStart
;
public
void
set
UpdateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
}
/**
* 获取 结束 保修期至
* @return defectsLiabilityPeriodEnd
* 获取 增加 更新用户
* @return updateUserIdIncrement
*/
public
String
getDefectsLiabilityPeriodEnd
(){
return
this
.
defectsLiabilityPeriodEnd
;
public
Long
getUpdateUserIdIncrement
(){
return
this
.
updateUserIdIncrement
;
}
/**
* 设置 结束 保修期至
* @param defectsLiabilityPeriodEnd
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
public
void
set
DefectsLiabilityPeriodEnd
(
String
defectsLiabilityPeriodEnd
){
this
.
defectsLiabilityPeriodEnd
=
defectsLiabilityPeriodEnd
;
public
void
set
UpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
}
/**
* 获取 负责人
* @return leadingOfficial
List
* 获取 更新用户
* @return updateUserId
List
*/
public
List
<
String
>
getLeadingOfficial
List
(){
return
this
.
leadingOfficial
List
;
public
List
<
Long
>
getUpdateUserId
List
(){
return
this
.
updateUserId
List
;
}
/**
* 设置 负责人
* @param leadingOfficial
List
* 设置 更新用户
* @param updateUserId
List
*/
public
void
set
LeadingOfficialList
(
List
<
String
>
leadingOfficial
List
){
this
.
leadingOfficialList
=
leadingOfficial
List
;
public
void
set
UpdateUserIdList
(
List
<
Long
>
updateUserId
List
){
this
.
updateUserIdList
=
updateUserId
List
;
}
/**
* 获取 联系电话
* @return leadingOfficialTelephone
List
* 获取 更新用户
* @return updateUserIdNot
List
*/
public
List
<
String
>
getLeadingOfficialTelephone
List
(){
return
this
.
leadingOfficialTelephone
List
;
public
List
<
Long
>
getUpdateUserIdNot
List
(){
return
this
.
updateUserIdNot
List
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephone
List
* 设置 更新用户
* @param updateUserIdNot
List
*/
public
void
set
LeadingOfficialTelephoneList
(
List
<
String
>
leadingOfficialTelephone
List
){
this
.
leadingOfficialTelephoneList
=
leadingOfficialTelephone
List
;
public
void
set
UpdateUserIdNotList
(
List
<
Long
>
updateUserIdNot
List
){
this
.
updateUserIdNotList
=
updateUserIdNot
List
;
}
/**
* 获取 开始 是否接收异常短(0.否,1.是)
* @return isReceiveMess
Start
* 获取 开始 更新时间
* @return updateTime
Start
*/
public
Integer
getIsReceiveMess
Start
(){
return
this
.
isReceiveMess
Start
;
public
String
getUpdateTime
Start
(){
return
this
.
updateTime
Start
;
}
/**
* 设置 开始 是否接收异常短(0.否,1.是)
* @param isReceiveMess
Start
* 设置 开始 更新时间
* @param updateTime
Start
*/
public
void
set
IsReceiveMessStart
(
Integer
isReceiveMess
Start
){
this
.
isReceiveMessStart
=
isReceiveMess
Start
;
public
void
set
UpdateTimeStart
(
String
updateTime
Start
){
this
.
updateTimeStart
=
updateTime
Start
;
}
/**
* 获取 结束 是否接收异常短(0.否,1.是)
* @return $isReceiveMess
End
* 获取 结束 更新时间
* @return updateTime
End
*/
public
Integer
getIsReceiveMess
End
(){
return
this
.
isReceiveMess
End
;
public
String
getUpdateTime
End
(){
return
this
.
updateTime
End
;
}
/**
* 设置 结束 是否接收异常短(0.否,1.是)
* @param isReceiveMessEnd
*/
public
void
setIsReceiveMessEnd
(
Integer
isReceiveMessEnd
){
this
.
isReceiveMessEnd
=
isReceiveMessEnd
;
}
/**
* 获取 增加 是否接收异常短(0.否,1.是)
* @return isReceiveMessIncrement
*/
public
Integer
getIsReceiveMessIncrement
(){
return
this
.
isReceiveMessIncrement
;
}
/**
* 设置 增加 是否接收异常短(0.否,1.是)
* @param isReceiveMessIncrement
*/
public
void
setIsReceiveMessIncrement
(
Integer
isReceiveMessIncrement
){
this
.
isReceiveMessIncrement
=
isReceiveMessIncrement
;
}
/**
* 获取 是否接收异常短(0.否,1.是)
* @return isReceiveMessList
*/
public
List
<
Integer
>
getIsReceiveMessList
(){
return
this
.
isReceiveMessList
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMessList
*/
public
void
setIsReceiveMessList
(
List
<
Integer
>
isReceiveMessList
){
this
.
isReceiveMessList
=
isReceiveMessList
;
}
/**
* 获取 设备图片
* @return devicePhotoPathList
*/
public
List
<
String
>
getDevicePhotoPathList
(){
return
this
.
devicePhotoPathList
;
}
/**
* 设置 设备图片
* @param devicePhotoPathList
*/
public
void
setDevicePhotoPathList
(
List
<
String
>
devicePhotoPathList
){
this
.
devicePhotoPathList
=
devicePhotoPathList
;
}
/**
* 获取 设备访问ip
* @return ipList
*/
public
List
<
String
>
getIpList
(){
return
this
.
ipList
;
}
/**
* 设置 设备访问ip
* @param ipList
*/
public
void
setIpList
(
List
<
String
>
ipList
){
this
.
ipList
=
ipList
;
}
/**
* 获取 中心设备编码
* @return centernumList
*/
public
List
<
String
>
getCenternumList
(){
return
this
.
centernumList
;
}
/**
* 设置 中心设备编码
* @param centernumList
*/
public
void
setCenternumList
(
List
<
String
>
centernumList
){
this
.
centernumList
=
centernumList
;
}
/**
* 获取 端口
* @return portList
*/
public
List
<
String
>
getPortList
(){
return
this
.
portList
;
}
/**
* 设置 端口
* @param portList
*/
public
void
setPortList
(
List
<
String
>
portList
){
this
.
portList
=
portList
;
}
/**
* 获取 设备topic信息
* @return deviceTopicList
*/
public
List
<
String
>
getDeviceTopicList
(){
return
this
.
deviceTopicList
;
}
/**
* 设置 设备topic信息
* @param deviceTopicList
*/
public
void
setDeviceTopicList
(
List
<
String
>
deviceTopicList
){
this
.
deviceTopicList
=
deviceTopicList
;
}
/**
* 获取 开始 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusStart
*/
public
Integer
getDeviceStatusStart
(){
return
this
.
deviceStatusStart
;
}
/**
* 设置 开始 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusStart
*/
public
void
setDeviceStatusStart
(
Integer
deviceStatusStart
){
this
.
deviceStatusStart
=
deviceStatusStart
;
}
/**
* 获取 结束 设备状态 (0.未激活,1.离线,2.在线)
* @return $deviceStatusEnd
*/
public
Integer
getDeviceStatusEnd
(){
return
this
.
deviceStatusEnd
;
}
/**
* 设置 结束 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusEnd
*/
public
void
setDeviceStatusEnd
(
Integer
deviceStatusEnd
){
this
.
deviceStatusEnd
=
deviceStatusEnd
;
}
/**
* 获取 增加 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusIncrement
*/
public
Integer
getDeviceStatusIncrement
(){
return
this
.
deviceStatusIncrement
;
}
/**
* 设置 增加 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusIncrement
*/
public
void
setDeviceStatusIncrement
(
Integer
deviceStatusIncrement
){
this
.
deviceStatusIncrement
=
deviceStatusIncrement
;
}
/**
* 获取 设备状态 (0.未激活,1.离线,2.在线)
* @return deviceStatusList
*/
public
List
<
Integer
>
getDeviceStatusList
(){
return
this
.
deviceStatusList
;
}
/**
* 设置 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusList
*/
public
void
setDeviceStatusList
(
List
<
Integer
>
deviceStatusList
){
this
.
deviceStatusList
=
deviceStatusList
;
}
/**
* 获取 开始 启用状态 (0.停止,1.启用)
* @return enabledStart
*/
public
Integer
getEnabledStart
(){
return
this
.
enabledStart
;
}
/**
* 设置 开始 启用状态 (0.停止,1.启用)
* @param enabledStart
*/
public
void
setEnabledStart
(
Integer
enabledStart
){
this
.
enabledStart
=
enabledStart
;
}
/**
* 获取 结束 启用状态 (0.停止,1.启用)
* @return $enabledEnd
*/
public
Integer
getEnabledEnd
(){
return
this
.
enabledEnd
;
}
/**
* 设置 结束 启用状态 (0.停止,1.启用)
* @param enabledEnd
*/
public
void
setEnabledEnd
(
Integer
enabledEnd
){
this
.
enabledEnd
=
enabledEnd
;
}
/**
* 获取 增加 启用状态 (0.停止,1.启用)
* @return enabledIncrement
*/
public
Integer
getEnabledIncrement
(){
return
this
.
enabledIncrement
;
}
/**
* 设置 增加 启用状态 (0.停止,1.启用)
* @param enabledIncrement
*/
public
void
setEnabledIncrement
(
Integer
enabledIncrement
){
this
.
enabledIncrement
=
enabledIncrement
;
}
/**
* 获取 启用状态 (0.停止,1.启用)
* @return enabledList
*/
public
List
<
Integer
>
getEnabledList
(){
return
this
.
enabledList
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabledList
*/
public
void
setEnabledList
(
List
<
Integer
>
enabledList
){
this
.
enabledList
=
enabledList
;
}
/**
* 获取 设备授权码
* @return deviceAuthCodeList
*/
public
List
<
String
>
getDeviceAuthCodeList
(){
return
this
.
deviceAuthCodeList
;
}
/**
* 设置 设备授权码
* @param deviceAuthCodeList
*/
public
void
setDeviceAuthCodeList
(
List
<
String
>
deviceAuthCodeList
){
this
.
deviceAuthCodeList
=
deviceAuthCodeList
;
}
/**
* 获取 备注
* @return deviceRemarkList
*/
public
List
<
String
>
getDeviceRemarkList
(){
return
this
.
deviceRemarkList
;
}
/**
* 设置 备注
* @param deviceRemarkList
*/
public
void
setDeviceRemarkList
(
List
<
String
>
deviceRemarkList
){
this
.
deviceRemarkList
=
deviceRemarkList
;
}
/**
* 获取 开始 最近上线时间
* @return onlineTimeStart
*/
public
String
getOnlineTimeStart
(){
return
this
.
onlineTimeStart
;
}
/**
* 设置 开始 最近上线时间
* @param onlineTimeStart
*/
public
void
setOnlineTimeStart
(
String
onlineTimeStart
){
this
.
onlineTimeStart
=
onlineTimeStart
;
}
/**
* 获取 结束 最近上线时间
* @return onlineTimeEnd
*/
public
String
getOnlineTimeEnd
(){
return
this
.
onlineTimeEnd
;
}
/**
* 设置 结束 最近上线时间
* @param onlineTimeEnd
*/
public
void
setOnlineTimeEnd
(
String
onlineTimeEnd
){
this
.
onlineTimeEnd
=
onlineTimeEnd
;
}
/**
* 获取 开始 最近离线时间
* @return offlineTimeStart
*/
public
String
getOfflineTimeStart
(){
return
this
.
offlineTimeStart
;
}
/**
* 设置 开始 最近离线时间
* @param offlineTimeStart
*/
public
void
setOfflineTimeStart
(
String
offlineTimeStart
){
this
.
offlineTimeStart
=
offlineTimeStart
;
}
/**
* 获取 结束 最近离线时间
* @return offlineTimeEnd
*/
public
String
getOfflineTimeEnd
(){
return
this
.
offlineTimeEnd
;
}
/**
* 设置 结束 最近离线时间
* @param offlineTimeEnd
*/
public
void
setOfflineTimeEnd
(
String
offlineTimeEnd
){
this
.
offlineTimeEnd
=
offlineTimeEnd
;
}
/**
* 获取 开始 是否删除(0.否,1.是)
* @return deletedStart
*/
public
Integer
getDeletedStart
(){
return
this
.
deletedStart
;
}
/**
* 设置 开始 是否删除(0.否,1.是)
* @param deletedStart
*/
public
void
setDeletedStart
(
Integer
deletedStart
){
this
.
deletedStart
=
deletedStart
;
}
/**
* 获取 结束 是否删除(0.否,1.是)
* @return $deletedEnd
*/
public
Integer
getDeletedEnd
(){
return
this
.
deletedEnd
;
}
/**
* 设置 结束 是否删除(0.否,1.是)
* @param deletedEnd
*/
public
void
setDeletedEnd
(
Integer
deletedEnd
){
this
.
deletedEnd
=
deletedEnd
;
}
/**
* 获取 增加 是否删除(0.否,1.是)
* @return deletedIncrement
*/
public
Integer
getDeletedIncrement
(){
return
this
.
deletedIncrement
;
}
/**
* 设置 增加 是否删除(0.否,1.是)
* @param deletedIncrement
*/
public
void
setDeletedIncrement
(
Integer
deletedIncrement
){
this
.
deletedIncrement
=
deletedIncrement
;
}
/**
* 获取 是否删除(0.否,1.是)
* @return deletedList
*/
public
List
<
Integer
>
getDeletedList
(){
return
this
.
deletedList
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deletedList
*/
public
void
setDeletedList
(
List
<
Integer
>
deletedList
){
this
.
deletedList
=
deletedList
;
}
/**
* 获取 设备版本
* @return deviceVersionList
*/
public
List
<
String
>
getDeviceVersionList
(){
return
this
.
deviceVersionList
;
}
/**
* 设置 设备版本
* @param deviceVersionList
*/
public
void
setDeviceVersionList
(
List
<
String
>
deviceVersionList
){
this
.
deviceVersionList
=
deviceVersionList
;
}
/**
* 获取 开始 设备来源(0.旧设备,1.新设备)
* @return sourceStart
*/
public
Integer
getSourceStart
(){
return
this
.
sourceStart
;
}
/**
* 设置 开始 设备来源(0.旧设备,1.新设备)
* @param sourceStart
*/
public
void
setSourceStart
(
Integer
sourceStart
){
this
.
sourceStart
=
sourceStart
;
}
/**
* 获取 结束 设备来源(0.旧设备,1.新设备)
* @return $sourceEnd
*/
public
Integer
getSourceEnd
(){
return
this
.
sourceEnd
;
}
/**
* 设置 结束 设备来源(0.旧设备,1.新设备)
* @param sourceEnd
*/
public
void
setSourceEnd
(
Integer
sourceEnd
){
this
.
sourceEnd
=
sourceEnd
;
}
/**
* 获取 增加 设备来源(0.旧设备,1.新设备)
* @return sourceIncrement
*/
public
Integer
getSourceIncrement
(){
return
this
.
sourceIncrement
;
}
/**
* 设置 增加 设备来源(0.旧设备,1.新设备)
* @param sourceIncrement
*/
public
void
setSourceIncrement
(
Integer
sourceIncrement
){
this
.
sourceIncrement
=
sourceIncrement
;
}
/**
* 获取 设备来源(0.旧设备,1.新设备)
* @return sourceList
*/
public
List
<
Integer
>
getSourceList
(){
return
this
.
sourceList
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param sourceList
*/
public
void
setSourceList
(
List
<
Integer
>
sourceList
){
this
.
sourceList
=
sourceList
;
}
/**
* 获取 开始 创建用户
* @return createUserIdStart
*/
public
Long
getCreateUserIdStart
(){
return
this
.
createUserIdStart
;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
}
/**
* 获取 结束 创建用户
* @return $createUserIdEnd
*/
public
Long
getCreateUserIdEnd
(){
return
this
.
createUserIdEnd
;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
}
/**
* 获取 增加 创建用户
* @return createUserIdIncrement
*/
public
Long
getCreateUserIdIncrement
(){
return
this
.
createUserIdIncrement
;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
/**
* 获取 创建用户
* @return createUserIdList
*/
public
List
<
Long
>
getCreateUserIdList
(){
return
this
.
createUserIdList
;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
}
/**
* 获取 开始 创建时间
* @return createTimeStart
*/
public
String
getCreateTimeStart
(){
return
this
.
createTimeStart
;
}
/**
* 设置 开始 创建时间
* @param createTimeStart
*/
public
void
setCreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStart
;
}
/**
* 获取 结束 创建时间
* @return createTimeEnd
*/
public
String
getCreateTimeEnd
(){
return
this
.
createTimeEnd
;
}
/**
* 设置 结束 创建时间
* @param createTimeEnd
*/
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
}
/**
* 获取 开始 更新用户
* @return updateUserIdStart
*/
public
Long
getUpdateUserIdStart
(){
return
this
.
updateUserIdStart
;
}
/**
* 设置 开始 更新用户
* @param updateUserIdStart
*/
public
void
setUpdateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
}
/**
* 获取 结束 更新用户
* @return $updateUserIdEnd
*/
public
Long
getUpdateUserIdEnd
(){
return
this
.
updateUserIdEnd
;
}
/**
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
public
void
setUpdateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
}
/**
* 获取 增加 更新用户
* @return updateUserIdIncrement
*/
public
Long
getUpdateUserIdIncrement
(){
return
this
.
updateUserIdIncrement
;
}
/**
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
public
void
setUpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
}
/**
* 获取 更新用户
* @return updateUserIdList
*/
public
List
<
Long
>
getUpdateUserIdList
(){
return
this
.
updateUserIdList
;
}
/**
* 设置 更新用户
* @param updateUserIdList
*/
public
void
setUpdateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
}
/**
* 获取 开始 更新时间
* @return updateTimeStart
*/
public
String
getUpdateTimeStart
(){
return
this
.
updateTimeStart
;
}
/**
* 设置 开始 更新时间
* @param updateTimeStart
*/
public
void
setUpdateTimeStart
(
String
updateTimeStart
){
this
.
updateTimeStart
=
updateTimeStart
;
}
/**
* 获取 结束 更新时间
* @return updateTimeEnd
*/
public
String
getUpdateTimeEnd
(){
return
this
.
updateTimeEnd
;
}
/**
* 设置 结束 更新时间
* @param updateTimeEnd
*/
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
}
/**
* 设置 主键ID,主键,自增长
* @param id
*/
public
DeviceQuery
id
(
Long
id
){
setId
(
id
);
return
this
;
}
/**
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
public
DeviceQuery
idStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
return
this
;
}
/**
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
public
DeviceQuery
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
return
this
;
}
/**
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
public
DeviceQuery
idIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
return
this
;
}
/**
* 设置 主键ID,主键,自增长
* @param idList
*/
public
DeviceQuery
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
return
this
;
}
/**
* 设置 设备名称
* @param deviceName
*/
public
DeviceQuery
deviceName
(
String
deviceName
){
setDeviceName
(
deviceName
);
return
this
;
}
/**
* 设置 设备名称
* @param deviceNameList
*/
public
DeviceQuery
deviceNameList
(
List
<
String
>
deviceNameList
){
this
.
deviceNameList
=
deviceNameList
;
return
this
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* @param deviceCode
*/
public
DeviceQuery
deviceCode
(
String
deviceCode
){
setDeviceCode
(
deviceCode
);
return
this
;
}
/**
* 设置 设备编码,SN码等,默认为MAC地址
* @param deviceCodeList
*/
public
DeviceQuery
deviceCodeList
(
List
<
String
>
deviceCodeList
){
this
.
deviceCodeList
=
deviceCodeList
;
return
this
;
}
/**
* 设置 设备SN码
* @param deviceSN
*/
public
DeviceQuery
deviceSN
(
String
deviceSN
){
setDeviceSN
(
deviceSN
);
return
this
;
}
/**
* 设置 设备SN码
* @param deviceSNList
*/
public
DeviceQuery
deviceSNList
(
List
<
String
>
deviceSNList
){
this
.
deviceSNList
=
deviceSNList
;
return
this
;
}
/**
* 设置 设备的MAC地址
* @param deviceMac
*/
public
DeviceQuery
deviceMac
(
String
deviceMac
){
setDeviceMac
(
deviceMac
);
return
this
;
}
/**
* 设置 设备的MAC地址
* @param deviceMacList
*/
public
DeviceQuery
deviceMacList
(
List
<
String
>
deviceMacList
){
this
.
deviceMacList
=
deviceMacList
;
return
this
;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteId
*/
public
DeviceQuery
siteId
(
Long
siteId
){
setSiteId
(
siteId
);
return
this
;
}
/**
* 设置 开始 站点Id,来源基础服务平台
* @param siteIdStart
*/
public
DeviceQuery
siteIdStart
(
Long
siteIdStart
){
this
.
siteIdStart
=
siteIdStart
;
return
this
;
}
/**
* 设置 结束 站点Id,来源基础服务平台
* @param siteIdEnd
*/
public
DeviceQuery
siteIdEnd
(
Long
siteIdEnd
){
this
.
siteIdEnd
=
siteIdEnd
;
return
this
;
}
/**
* 设置 增加 站点Id,来源基础服务平台
* @param siteIdIncrement
*/
public
DeviceQuery
siteIdIncrement
(
Long
siteIdIncrement
){
this
.
siteIdIncrement
=
siteIdIncrement
;
return
this
;
}
/**
* 设置 站点Id,来源基础服务平台
* @param siteIdList
*/
public
DeviceQuery
siteIdList
(
List
<
Long
>
siteIdList
){
this
.
siteIdList
=
siteIdList
;
return
this
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCode
*/
public
DeviceQuery
siteCode
(
String
siteCode
){
setSiteCode
(
siteCode
);
return
this
;
}
/**
* 设置 站点编号,来源基础服务平台
* @param siteCodeList
*/
public
DeviceQuery
siteCodeList
(
List
<
String
>
siteCodeList
){
this
.
siteCodeList
=
siteCodeList
;
return
this
;
}
/**
* 设置 站点名称
* @param siteName
*/
public
DeviceQuery
siteName
(
String
siteName
){
setSiteName
(
siteName
);
return
this
;
}
/**
* 设置 站点名称
* @param siteNameList
*/
public
DeviceQuery
siteNameList
(
List
<
String
>
siteNameList
){
this
.
siteNameList
=
siteNameList
;
return
this
;
}
/**
* 设置 平台系统Id
* @param platformId
*/
public
DeviceQuery
platformId
(
Long
platformId
){
setPlatformId
(
platformId
);
return
this
;
}
/**
* 设置 开始 平台系统Id
* @param platformIdStart
*/
public
DeviceQuery
platformIdStart
(
Long
platformIdStart
){
this
.
platformIdStart
=
platformIdStart
;
return
this
;
}
/**
* 设置 结束 平台系统Id
* @param platformIdEnd
*/
public
DeviceQuery
platformIdEnd
(
Long
platformIdEnd
){
this
.
platformIdEnd
=
platformIdEnd
;
return
this
;
}
/**
* 设置 增加 平台系统Id
* @param platformIdIncrement
*/
public
DeviceQuery
platformIdIncrement
(
Long
platformIdIncrement
){
this
.
platformIdIncrement
=
platformIdIncrement
;
return
this
;
}
/**
* 设置 平台系统Id
* @param platformIdList
*/
public
DeviceQuery
platformIdList
(
List
<
Long
>
platformIdList
){
this
.
platformIdList
=
platformIdList
;
return
this
;
}
/**
* 设置 平台系统名称
* @param platformName
*/
public
DeviceQuery
platformName
(
String
platformName
){
setPlatformName
(
platformName
);
return
this
;
}
/**
* 设置 平台系统名称
* @param platformNameList
*/
public
DeviceQuery
platformNameList
(
List
<
String
>
platformNameList
){
this
.
platformNameList
=
platformNameList
;
return
this
;
}
/**
* 设置 产品Id
* @param productId
*/
public
DeviceQuery
productId
(
Long
productId
){
setProductId
(
productId
);
return
this
;
}
/**
* 设置 开始 产品Id
* @param productIdStart
*/
public
DeviceQuery
productIdStart
(
Long
productIdStart
){
this
.
productIdStart
=
productIdStart
;
return
this
;
}
/**
* 设置 结束 产品Id
* @param productIdEnd
*/
public
DeviceQuery
productIdEnd
(
Long
productIdEnd
){
this
.
productIdEnd
=
productIdEnd
;
return
this
;
}
/**
* 设置 增加 产品Id
* @param productIdIncrement
*/
public
DeviceQuery
productIdIncrement
(
Long
productIdIncrement
){
this
.
productIdIncrement
=
productIdIncrement
;
return
this
;
}
/**
* 设置 产品Id
* @param productIdList
*/
public
DeviceQuery
productIdList
(
List
<
Long
>
productIdList
){
this
.
productIdList
=
productIdList
;
return
this
;
}
/**
* 设置 产品名称
* @param productName
*/
public
DeviceQuery
productName
(
String
productName
){
setProductName
(
productName
);
return
this
;
}
/**
* 设置 产品名称
* @param productNameList
*/
public
DeviceQuery
productNameList
(
List
<
String
>
productNameList
){
this
.
productNameList
=
productNameList
;
return
this
;
}
/**
* 设置 皮肤id
* @param skinId
*/
public
DeviceQuery
skinId
(
Long
skinId
){
setSkinId
(
skinId
);
return
this
;
}
/**
* 设置 开始 皮肤id
* @param skinIdStart
*/
public
DeviceQuery
skinIdStart
(
Long
skinIdStart
){
this
.
skinIdStart
=
skinIdStart
;
return
this
;
}
/**
* 设置 结束 皮肤id
* @param skinIdEnd
*/
public
DeviceQuery
skinIdEnd
(
Long
skinIdEnd
){
this
.
skinIdEnd
=
skinIdEnd
;
return
this
;
}
/**
* 设置 增加 皮肤id
* @param skinIdIncrement
*/
public
DeviceQuery
skinIdIncrement
(
Long
skinIdIncrement
){
this
.
skinIdIncrement
=
skinIdIncrement
;
return
this
;
}
/**
* 设置 皮肤id
* @param skinIdList
*/
public
DeviceQuery
skinIdList
(
List
<
Long
>
skinIdList
){
this
.
skinIdList
=
skinIdList
;
return
this
;
}
/**
* 设置 皮肤名称
* @param skinName
*/
public
DeviceQuery
skinName
(
String
skinName
){
setSkinName
(
skinName
);
return
this
;
}
/**
* 设置 皮肤名称
* @param skinNameList
*/
public
DeviceQuery
skinNameList
(
List
<
String
>
skinNameList
){
this
.
skinNameList
=
skinNameList
;
return
this
;
}
/**
* 设置 首页地址
* @param homeUrl
*/
public
DeviceQuery
homeUrl
(
String
homeUrl
){
setHomeUrl
(
homeUrl
);
return
this
;
}
/**
* 设置 首页地址
* @param homeUrlList
*/
public
DeviceQuery
homeUrlList
(
List
<
String
>
homeUrlList
){
this
.
homeUrlList
=
homeUrlList
;
return
this
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmId
*/
public
DeviceQuery
deviceFirmId
(
Long
deviceFirmId
){
setDeviceFirmId
(
deviceFirmId
);
return
this
;
}
/**
* 设置 开始 设备生产厂商ID
* @param deviceFirmIdStart
*/
public
DeviceQuery
deviceFirmIdStart
(
Long
deviceFirmIdStart
){
this
.
deviceFirmIdStart
=
deviceFirmIdStart
;
return
this
;
}
/**
* 设置 结束 设备生产厂商ID
* @param deviceFirmIdEnd
*/
public
DeviceQuery
deviceFirmIdEnd
(
Long
deviceFirmIdEnd
){
this
.
deviceFirmIdEnd
=
deviceFirmIdEnd
;
return
this
;
}
/**
* 设置 增加 设备生产厂商ID
* @param deviceFirmIdIncrement
*/
public
DeviceQuery
deviceFirmIdIncrement
(
Long
deviceFirmIdIncrement
){
this
.
deviceFirmIdIncrement
=
deviceFirmIdIncrement
;
return
this
;
}
/**
* 设置 设备生产厂商ID
* @param deviceFirmIdList
* 设置 结束 更新时间
* @param updateTimeEnd
*/
public
DeviceQuery
deviceFirmIdList
(
List
<
Long
>
deviceFirmIdList
){
this
.
deviceFirmIdList
=
deviceFirmIdList
;
return
this
;
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmname
* 设置 主键ID,主键,自增长
* @param id
*/
public
DeviceQuery
deviceFirmname
(
String
deviceFirmname
){
setDeviceFirmname
(
deviceFirmname
);
public
DeviceQuery
id
(
Long
id
){
setId
(
id
);
return
this
;
}
/**
* 设置 设备生产厂商名称
* @param deviceFirmnameLis
t
* 设置 开始 主键ID,主键,自增长
* @param idStar
t
*/
public
DeviceQuery
deviceFirmnameList
(
List
<
String
>
deviceFirmnameLis
t
){
this
.
deviceFirmnameList
=
deviceFirmnameLis
t
;
public
DeviceQuery
idStart
(
Long
idStar
t
){
this
.
idStart
=
idStar
t
;
return
this
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrc
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
public
DeviceQuery
deviceSrc
(
Integer
deviceSrc
){
setDeviceSrc
(
deviceSrc
)
;
public
DeviceQuery
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
return
this
;
}
/**
* 设置 开始 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcStar
t
* 设置 增加 主键ID,主键,自增长
* @param idIncremen
t
*/
public
DeviceQuery
deviceSrcStart
(
Integer
deviceSrcStar
t
){
this
.
deviceSrcStart
=
deviceSrcStar
t
;
public
DeviceQuery
idIncrement
(
Long
idIncremen
t
){
this
.
idIncrement
=
idIncremen
t
;
return
this
;
}
/**
* 设置 结束 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcEnd
/**
* 设置 主键ID,主键,自增长
* @param idList
*/
public
DeviceQuery
deviceSrcEnd
(
Integer
deviceSrcEnd
){
this
.
deviceSrcEnd
=
deviceSrcEnd
;
public
DeviceQuery
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
return
this
;
}
/**
* 设置 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcIncremen
t
* 设置 主键ID,主键,自增长
* @param idNotLis
t
*/
public
DeviceQuery
deviceSrcIncrement
(
Integer
deviceSrcIncremen
t
){
this
.
deviceSrcIncrement
=
deviceSrcIncremen
t
;
public
DeviceQuery
idNotList
(
List
<
Long
>
idNotLis
t
){
this
.
idNotList
=
idNotLis
t
;
return
this
;
}
/**
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcList
* 设置 设备id
* @param deviceId
*/
public
DeviceQuery
device
SrcList
(
List
<
Integer
>
deviceSrcList
){
this
.
deviceSrcList
=
deviceSrcList
;
public
DeviceQuery
device
Id
(
Long
deviceId
){
setDeviceId
(
deviceId
)
;
return
this
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWay
* 设置 开始 设备id
* @param deviceIdStart
*/
public
DeviceQuery
device
DataSourceWay
(
Integer
deviceDataSourceWay
){
setDeviceDataSourceWay
(
deviceDataSourceWay
)
;
public
DeviceQuery
device
IdStart
(
Long
deviceIdStart
){
this
.
deviceIdStart
=
deviceIdStart
;
return
this
;
}
/**
* 设置 开始 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayStart
* 设置 结束 设备id
* @param deviceIdEnd
*/
public
DeviceQuery
device
DataSourceWayStart
(
Integer
deviceDataSourceWayStart
){
this
.
deviceDataSourceWayStart
=
deviceDataSourceWayStart
;
public
DeviceQuery
device
IdEnd
(
Long
deviceIdEnd
){
this
.
deviceIdEnd
=
deviceIdEnd
;
return
this
;
}
/**
* 设置 结束 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayEnd
* 设置 增加 设备id
* @param deviceIdIncrement
*/
public
DeviceQuery
device
DataSourceWayEnd
(
Integer
deviceDataSourceWayEnd
){
this
.
deviceDataSourceWayEnd
=
deviceDataSourceWayEnd
;
public
DeviceQuery
device
IdIncrement
(
Long
deviceIdIncrement
){
this
.
deviceIdIncrement
=
deviceIdIncrement
;
return
this
;
}
/**
* 设置 增加 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWayIncremen
t
* 设置 设备id
* @param deviceIdLis
t
*/
public
DeviceQuery
device
DataSourceWayIncrement
(
Integer
deviceDataSourceWayIncremen
t
){
this
.
device
DataSourceWayIncrement
=
deviceDataSourceWayIncremen
t
;
public
DeviceQuery
device
IdList
(
List
<
Long
>
deviceIdLis
t
){
this
.
device
IdList
=
deviceIdLis
t
;
return
this
;
}
/**
* 设置 数据获取方式(0.主动上报,1.被动拉取)
* @param deviceDataSourceWay
List
* 设置 设备id
* @param deviceIdNot
List
*/
public
DeviceQuery
deviceDataSourceWayList
(
List
<
Integer
>
deviceDataSourceWay
List
){
this
.
device
DataSourceWayList
=
deviceDataSourceWay
List
;
public
DeviceQuery
deviceIdNotList
(
List
<
Long
>
deviceIdNot
List
){
this
.
device
IdNotList
=
deviceIdNot
List
;
return
this
;
}
/**
* 设置 经度
* @param lon
* 设置 设备名称
* @param deviceName
*/
public
DeviceQuery
lon
(
String
lon
){
set
Lon
(
lon
);
public
DeviceQuery
deviceName
(
String
deviceName
){
set
DeviceName
(
deviceName
);
return
this
;
}
/**
* 设置 经度
* @param lon
List
* 设置 设备名称
* @param deviceName
List
*/
public
DeviceQuery
lonList
(
List
<
String
>
lon
List
){
this
.
lonList
=
lon
List
;
public
DeviceQuery
deviceNameList
(
List
<
String
>
deviceName
List
){
this
.
deviceNameList
=
deviceName
List
;
return
this
;
}
/**
* 设置 经度
* @param lati
* 设置 设备编码
* @param deviceCode
*/
public
DeviceQuery
lati
(
String
lati
){
set
Lati
(
lati
);
public
DeviceQuery
deviceCode
(
String
deviceCode
){
set
DeviceCode
(
deviceCode
);
return
this
;
}
/**
* 设置 经度
* @param lati
List
* 设置 设备编码
* @param deviceCode
List
*/
public
DeviceQuery
latiList
(
List
<
String
>
lati
List
){
this
.
latiList
=
lati
List
;
public
DeviceQuery
deviceCodeList
(
List
<
String
>
deviceCode
List
){
this
.
deviceCodeList
=
deviceCode
List
;
return
this
;
}
/**
* 设置 所属楼栋
* @param deviceInBuilding
* 设置 设备的MAC地址
* @param deviceMac
*/
public
DeviceQuery
device
InBuilding
(
Integer
deviceInBuilding
){
setDevice
InBuilding
(
deviceInBuilding
);
public
DeviceQuery
device
Mac
(
String
deviceMac
){
setDevice
Mac
(
deviceMac
);
return
this
;
}
/**
* 设置 开始 所属楼栋
* @param deviceInBuildingStar
t
* 设置 设备的MAC地址
* @param deviceMacLis
t
*/
public
DeviceQuery
device
InBuildingStart
(
Integer
deviceInBuildingStar
t
){
this
.
device
InBuildingStart
=
deviceInBuildingStar
t
;
public
DeviceQuery
device
MacList
(
List
<
String
>
deviceMacLis
t
){
this
.
device
MacList
=
deviceMacLis
t
;
return
this
;
}
/**
* 设置 结束 所属楼栋
* @param deviceInBuildingEn
d
* 设置 站点Id
* @param siteI
d
*/
public
DeviceQuery
deviceInBuildingEnd
(
Integer
deviceInBuildingEn
d
){
this
.
deviceInBuildingEnd
=
deviceInBuildingEnd
;
public
DeviceQuery
siteId
(
Long
siteI
d
){
setSiteId
(
siteId
)
;
return
this
;
}
/**
* 设置 增加 所属楼栋
* @param deviceInBuildingIncremen
t
* 设置 开始 站点Id
* @param siteIdStar
t
*/
public
DeviceQuery
deviceInBuildingIncrement
(
Integer
deviceInBuildingIncremen
t
){
this
.
deviceInBuildingIncrement
=
deviceInBuildingIncremen
t
;
public
DeviceQuery
siteIdStart
(
Long
siteIdStar
t
){
this
.
siteIdStart
=
siteIdStar
t
;
return
this
;
}
/**
* 设置 所属楼栋
* @param deviceInBuildingList
* 设置 结束 站点Id
* @param siteIdEnd
*/
public
DeviceQuery
deviceInBuildingList
(
List
<
Integer
>
deviceInBuildingList
){
this
.
deviceInBuildingList
=
deviceInBuildingList
;
public
DeviceQuery
siteIdEnd
(
Long
siteIdEnd
){
this
.
siteIdEnd
=
siteIdEnd
;
return
this
;
}
/**
* 设置 所属楼层
* @param deviceInFloor
* 设置 增加 站点Id
* @param siteIdIncrement
*/
public
DeviceQuery
deviceInFloor
(
Integer
deviceInFloor
){
setDeviceInFloor
(
deviceInFloor
)
;
public
DeviceQuery
siteIdIncrement
(
Long
siteIdIncrement
){
this
.
siteIdIncrement
=
siteIdIncrement
;
return
this
;
}
/**
* 设置 开始 所属楼层
* @param deviceInFloorStar
t
* 设置 站点Id
* @param siteIdLis
t
*/
public
DeviceQuery
deviceInFloorStart
(
Integer
deviceInFloorStar
t
){
this
.
deviceInFloorStart
=
deviceInFloorStar
t
;
public
DeviceQuery
siteIdList
(
List
<
Long
>
siteIdLis
t
){
this
.
siteIdList
=
siteIdLis
t
;
return
this
;
}
/**
* 设置 结束 所属楼层
* @param deviceInFloorEnd
* 设置 站点Id
* @param siteIdNotList
*/
public
DeviceQuery
deviceInFloorEnd
(
Integer
deviceInFloorEnd
){
this
.
deviceInFloorEnd
=
deviceInFloorEnd
;
public
DeviceQuery
siteIdNotList
(
List
<
Long
>
siteIdNotList
){
this
.
siteIdNotList
=
siteIdNotList
;
return
this
;
}
/**
* 设置 增加 所属楼层
* @param deviceInFloorIncrement
* 设置 站点编号,来源基础服务平台
* @param siteCode
*/
public
DeviceQuery
deviceInFloorIncrement
(
Integer
deviceInFloorIncrement
){
this
.
deviceInFloorIncrement
=
deviceInFloorIncrement
;
public
DeviceQuery
siteCode
(
String
siteCode
){
setSiteCode
(
siteCode
)
;
return
this
;
}
/**
* 设置 所属楼层
* @param deviceInFloor
List
* 设置 站点编号,来源基础服务平台
* @param siteCode
List
*/
public
DeviceQuery
deviceInFloorList
(
List
<
Integer
>
deviceInFloor
List
){
this
.
deviceInFloorList
=
deviceInFloor
List
;
public
DeviceQuery
siteCodeList
(
List
<
String
>
siteCode
List
){
this
.
siteCodeList
=
siteCode
List
;
return
this
;
}
/**
* 设置 负责人
* @param leadingOfficial
* 设置 站点名称
* @param siteName
*/
public
DeviceQuery
leadingOfficial
(
String
leadingOfficial
){
set
LeadingOfficial
(
leadingOfficial
);
public
DeviceQuery
siteName
(
String
siteName
){
set
SiteName
(
siteName
);
return
this
;
}
/**
* 设置 负责人
* @param leadingOfficial
List
* 设置 站点名称
* @param siteName
List
*/
public
DeviceQuery
leadingOfficialList
(
List
<
String
>
leadingOfficial
List
){
this
.
leadingOfficialList
=
leadingOfficial
List
;
public
DeviceQuery
siteNameList
(
List
<
String
>
siteName
List
){
this
.
siteNameList
=
siteName
List
;
return
this
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephon
e
* 设置 产品编码
* @param productCod
e
*/
public
DeviceQuery
leadingOfficialTelephone
(
String
leadingOfficialTelephon
e
){
set
LeadingOfficialTelephone
(
leadingOfficialTelephon
e
);
public
DeviceQuery
productCode
(
String
productCod
e
){
set
ProductCode
(
productCod
e
);
return
this
;
}
/**
* 设置 联系电话
* @param leadingOfficialTelephon
eList
* 设置 产品编码
* @param productCod
eList
*/
public
DeviceQuery
leadingOfficialTelephoneList
(
List
<
String
>
leadingOfficialTelephon
eList
){
this
.
leadingOfficialTelephoneList
=
leadingOfficialTelephon
eList
;
public
DeviceQuery
productCodeList
(
List
<
String
>
productCod
eList
){
this
.
productCodeList
=
productCod
eList
;
return
this
;
}
/**
* 设置 是否接收异常短(0.否,1.是)
* @param isReceiveMess
* 设置 产品名称
* @param productName
*/
public
DeviceQuery
isReceiveMess
(
Integer
isReceiveMess
){
set
IsReceiveMess
(
isReceiveMess
);
public
DeviceQuery
productName
(
String
productName
){
set
ProductName
(
productName
);
return
this
;
}
/**
* 设置 开始 是否接收异常短(0.否,1.是)
* @param isReceiveMessStar
t
* 设置 产品名称
* @param productNameLis
t
*/
public
DeviceQuery
isReceiveMessStart
(
Integer
isReceiveMessStar
t
){
this
.
isReceiveMessStart
=
isReceiveMessStar
t
;
public
DeviceQuery
productNameList
(
List
<
String
>
productNameLis
t
){
this
.
productNameList
=
productNameLis
t
;
return
this
;
}
/**
* 设置 结束 是否接收异常短(0.否,1.是
)
* @param isReceiveMessEnd
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @param deviceSrc
*/
public
DeviceQuery
isReceiveMessEnd
(
Integer
isReceiveMessEnd
){
this
.
isReceiveMessEnd
=
isReceiveMessEnd
;
public
DeviceQuery
deviceSrc
(
Integer
deviceSrc
){
setDeviceSrc
(
deviceSrc
)
;
return
this
;
}
/**
* 设置 增加 是否接收异常短(0.否,1.是
)
* @param isReceiveMessIncremen
t
* 设置 开始 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @param deviceSrcStar
t
*/
public
DeviceQuery
isReceiveMessIncrement
(
Integer
isReceiveMessIncremen
t
){
this
.
isReceiveMessIncrement
=
isReceiveMessIncremen
t
;
public
DeviceQuery
deviceSrcStart
(
Integer
deviceSrcStar
t
){
this
.
deviceSrcStart
=
deviceSrcStar
t
;
return
this
;
}
/**
* 设置 是否接收异常短(0.否,1.是
)
* @param isReceiveMessList
* 设置 结束 设备来源(0.子设备,1.网关设备,2.直连设备
)
* @param deviceSrcEnd
*/
public
DeviceQuery
isReceiveMessList
(
List
<
Integer
>
isReceiveMessList
){
this
.
isReceiveMessList
=
isReceiveMessList
;
public
DeviceQuery
deviceSrcEnd
(
Integer
deviceSrcEnd
){
this
.
deviceSrcEnd
=
deviceSrcEnd
;
return
this
;
}
/**
* 设置 增加 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcIncrement
*/
public
DeviceQuery
deviceSrcIncrement
(
Integer
deviceSrcIncrement
){
this
.
deviceSrcIncrement
=
deviceSrcIncrement
;
return
this
;
}
/**
* 设置 设备图片
* @param devicePhotoPath
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcList
*/
public
DeviceQuery
device
PhotoPath
(
String
devicePhotoPath
){
setDevicePhotoPath
(
devicePhotoPath
)
;
public
DeviceQuery
device
SrcList
(
List
<
Integer
>
deviceSrcList
){
this
.
deviceSrcList
=
deviceSrcList
;
return
this
;
}
/**
* 设置 设备图片
* @param devicePhotoPath
List
* 设置 设备来源(0.子设备,1.网关设备,2.直连设备)
* @param deviceSrcNot
List
*/
public
DeviceQuery
devicePhotoPathList
(
List
<
String
>
devicePhotoPath
List
){
this
.
device
PhotoPathList
=
devicePhotoPath
List
;
public
DeviceQuery
deviceSrcNotList
(
List
<
Integer
>
deviceSrcNot
List
){
this
.
device
SrcNotList
=
deviceSrcNot
List
;
return
this
;
}
/**
* 设置 设备访问ip
* @param ip
* 设置 经度
* @param lon
*/
public
DeviceQuery
ip
(
String
ip
){
set
Ip
(
ip
);
public
DeviceQuery
lon
(
String
lon
){
set
Lon
(
lon
);
return
this
;
}
/**
* 设置 设备访问ip
* @param ip
List
* 设置 经度
* @param lon
List
*/
public
DeviceQuery
ipList
(
List
<
String
>
ip
List
){
this
.
ipList
=
ip
List
;
public
DeviceQuery
lonList
(
List
<
String
>
lon
List
){
this
.
lonList
=
lon
List
;
return
this
;
}
/**
* 设置 中心设备编码
* @param centernum
* 设置 纬度
* @param lati
*/
public
DeviceQuery
centernum
(
String
centernum
){
set
Centernum
(
centernum
);
public
DeviceQuery
lati
(
String
lati
){
set
Lati
(
lati
);
return
this
;
}
/**
* 设置 中心设备编码
* @param centernum
List
* 设置 纬度
* @param lati
List
*/
public
DeviceQuery
centernumList
(
List
<
String
>
centernum
List
){
this
.
centernumList
=
centernum
List
;
public
DeviceQuery
latiList
(
List
<
String
>
lati
List
){
this
.
latiList
=
lati
List
;
return
this
;
}
/**
* 设置 端口
* @param port
* 设置 负责人
* @param leadingOfficial
*/
public
DeviceQuery
port
(
String
port
){
set
Port
(
port
);
public
DeviceQuery
leadingOfficial
(
String
leadingOfficial
){
set
LeadingOfficial
(
leadingOfficial
);
return
this
;
}
/**
* 设置 端口
* @param port
List
* 设置 负责人
* @param leadingOfficial
List
*/
public
DeviceQuery
portList
(
List
<
String
>
port
List
){
this
.
portList
=
port
List
;
public
DeviceQuery
leadingOfficialList
(
List
<
String
>
leadingOfficial
List
){
this
.
leadingOfficialList
=
leadingOfficial
List
;
return
this
;
}
/**
* 设置 设备topic信息
* @param deviceTopic
* 设置 联系电话
* @param leadingOfficialTelephone
*/
public
DeviceQuery
deviceTopic
(
String
deviceTopic
){
set
DeviceTopic
(
deviceTopic
);
public
DeviceQuery
leadingOfficialTelephone
(
String
leadingOfficialTelephone
){
set
LeadingOfficialTelephone
(
leadingOfficialTelephone
);
return
this
;
}
/**
* 设置 设备topic信息
* @param deviceTopic
List
* 设置 联系电话
* @param leadingOfficialTelephone
List
*/
public
DeviceQuery
deviceTopicList
(
List
<
String
>
deviceTopic
List
){
this
.
deviceTopicList
=
deviceTopic
List
;
public
DeviceQuery
leadingOfficialTelephoneList
(
List
<
String
>
leadingOfficialTelephone
List
){
this
.
leadingOfficialTelephoneList
=
leadingOfficialTelephone
List
;
return
this
;
}
...
...
@@ -2835,66 +1776,11 @@ public class DeviceQuery extends DeviceEntity {
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabled
*/
public
DeviceQuery
enabled
(
Integer
enabled
){
setEnabled
(
enabled
);
return
this
;
}
/**
* 设置 开始 启用状态 (0.停止,1.启用)
* @param enabledStart
*/
public
DeviceQuery
enabledStart
(
Integer
enabledStart
){
this
.
enabledStart
=
enabledStart
;
return
this
;
}
/**
* 设置 结束 启用状态 (0.停止,1.启用)
* @param enabledEnd
*/
public
DeviceQuery
enabledEnd
(
Integer
enabledEnd
){
this
.
enabledEnd
=
enabledEnd
;
return
this
;
}
/**
* 设置 增加 启用状态 (0.停止,1.启用)
* @param enabledIncrement
*/
public
DeviceQuery
enabledIncrement
(
Integer
enabledIncrement
){
this
.
enabledIncrement
=
enabledIncrement
;
return
this
;
}
/**
* 设置 启用状态 (0.停止,1.启用)
* @param enabledList
*/
public
DeviceQuery
enabledList
(
List
<
Integer
>
enabledList
){
this
.
enabledList
=
enabledList
;
return
this
;
}
/**
* 设置 设备授权码
* @param deviceAuthCode
*/
public
DeviceQuery
deviceAuthCode
(
String
deviceAuthCode
){
setDeviceAuthCode
(
deviceAuthCode
);
return
this
;
}
/**
* 设置 设备授权码
* @param deviceAuthCodeList
* 设置 设备状态 (0.未激活,1.离线,2.在线)
* @param deviceStatusNotList
*/
public
DeviceQuery
deviceAuthCodeList
(
List
<
String
>
deviceAuthCode
List
){
this
.
device
AuthCodeList
=
deviceAuthCode
List
;
public
DeviceQuery
deviceStatusNotList
(
List
<
Integer
>
deviceStatusNot
List
){
this
.
device
StatusNotList
=
deviceStatusNot
List
;
return
this
;
}
...
...
@@ -2917,72 +1803,6 @@ public class DeviceQuery extends DeviceEntity {
return
this
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deleted
*/
public
DeviceQuery
deleted
(
Integer
deleted
){
setDeleted
(
deleted
);
return
this
;
}
/**
* 设置 开始 是否删除(0.否,1.是)
* @param deletedStart
*/
public
DeviceQuery
deletedStart
(
Integer
deletedStart
){
this
.
deletedStart
=
deletedStart
;
return
this
;
}
/**
* 设置 结束 是否删除(0.否,1.是)
* @param deletedEnd
*/
public
DeviceQuery
deletedEnd
(
Integer
deletedEnd
){
this
.
deletedEnd
=
deletedEnd
;
return
this
;
}
/**
* 设置 增加 是否删除(0.否,1.是)
* @param deletedIncrement
*/
public
DeviceQuery
deletedIncrement
(
Integer
deletedIncrement
){
this
.
deletedIncrement
=
deletedIncrement
;
return
this
;
}
/**
* 设置 是否删除(0.否,1.是)
* @param deletedList
*/
public
DeviceQuery
deletedList
(
List
<
Integer
>
deletedList
){
this
.
deletedList
=
deletedList
;
return
this
;
}
/**
* 设置 设备版本
* @param deviceVersion
*/
public
DeviceQuery
deviceVersion
(
String
deviceVersion
){
setDeviceVersion
(
deviceVersion
);
return
this
;
}
/**
* 设置 设备版本
* @param deviceVersionList
*/
public
DeviceQuery
deviceVersionList
(
List
<
String
>
deviceVersionList
){
this
.
deviceVersionList
=
deviceVersionList
;
return
this
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param source
...
...
@@ -3028,6 +1848,15 @@ public class DeviceQuery extends DeviceEntity {
return
this
;
}
/**
* 设置 设备来源(0.旧设备,1.新设备)
* @param sourceNotList
*/
public
DeviceQuery
sourceNotList
(
List
<
Integer
>
sourceNotList
){
this
.
sourceNotList
=
sourceNotList
;
return
this
;
}
/**
* 设置 创建用户
* @param createUserId
...
...
@@ -3073,6 +1902,15 @@ public class DeviceQuery extends DeviceEntity {
return
this
;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public
DeviceQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
return
this
;
}
/**
* 设置 更新用户
...
...
@@ -3119,6 +1957,15 @@ public class DeviceQuery extends DeviceEntity {
return
this
;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public
DeviceQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
return
this
;
}
/**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
...
...
fill-manager/src/main/java/com/mortals/xhx/module/device/model/vo/DeviceMatterDatumVo.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.model.vo
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.matter.model.MatterDatumEntity
;
import
lombok.Data
;
import
java.util.List
;
/**
* 设备事项申请材料业务视图对象
*
* @author zxfei
* @date 2023-02-25
*/
@Data
public
class
DeviceMatterDatumVo
extends
BaseEntityLong
{
private
List
<
MatterDatumEntity
>
matterDatumList
;
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/model/vo/DeviceVo.java
View file @
1c185a09
package
com.mortals.xhx.module.device.model.vo
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
lombok.Data
;
import
org.apache.poi.ss.usermodel.PictureData
;
import
java.util.List
;
/**
* 设备视图对象
*
* @author zxfei
* @date 202
2-07-01
* @date 202
3-02-25
*/
@Data
public
class
DeviceVo
extends
BaseEntityLong
{
/**
* 唯一标识
*/
private
String
token
;
/**
* 平台编码
*/
private
String
platformCode
;
/**
* 产品编码
*/
@Excel
(
name
=
"产品类型"
,
cacheDict
=
"productDict"
,
type
=
Excel
.
Type
.
IMPORT
)
private
String
productCode
;
/**
* 是否通知第三方
*/
private
Boolean
switchSend
=
true
;
/**
* 设备图片附件
*/
@Excel
(
name
=
"设备图片"
,
type
=
Excel
.
Type
.
IMPORT
,
cellType
=
Excel
.
ColumnType
.
IMAGE
)
@JSONField
(
deserialize
=
false
,
serialize
=
false
)
@JsonIgnore
private
PictureData
picObj
;
/** 主键ID,主键,自增长列表 */
private
List
<
Long
>
idList
;
/**
* 产品列表
*/
private
List
<
Long
>
productIdList
;
private
List
<
Integer
>
deviceStatusList
;
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/service/DeviceMatterDatumService.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.service
;
import
com.mortals.framework.service.ICRUDService
;
import
com.mortals.xhx.module.device.dao.DeviceMatterDatumDao
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumEntity
;
/**
* DeviceMatterDatumService
* <p>
* 设备事项申请材料业务 service接口
*
* @author zxfei
* @date 2023-02-25
*/
public
interface
DeviceMatterDatumService
extends
ICRUDService
<
DeviceMatterDatumEntity
,
Long
>
{
DeviceMatterDatumDao
getDao
();
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/service/DeviceService.java
View file @
1c185a09
package
com.mortals.xhx.module.device.service
;
import
com.mortals.framework.service.ICRUDService
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
/**
* DeviceService
*
* 设备 service接口
*
* @author zxfei
* @date 202
2-03-09
* @date 202
3-02-25
*/
public
interface
DeviceService
extends
ICRUDService
<
DeviceEntity
,
Long
>
{
public
interface
DeviceService
extends
ICRUDService
<
DeviceEntity
,
Long
>{
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceMatterDatumServiceImpl.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.service.impl
;
import
com.mortals.framework.exception.AppException
;
import
com.mortals.framework.model.Context
;
import
com.mortals.framework.model.PageInfo
;
import
com.mortals.framework.service.impl.AbstractCRUDServiceImpl
;
import
com.mortals.xhx.module.device.dao.DeviceMatterDatumDao
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumEntity
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumQuery
;
import
com.mortals.xhx.module.device.service.DeviceMatterDatumService
;
import
com.mortals.xhx.module.device.service.DeviceService
;
import
com.mortals.xhx.module.matter.model.MatterDatumEntity
;
import
com.mortals.xhx.module.matter.model.MatterDatumQuery
;
import
com.mortals.xhx.module.matter.model.MatterEntity
;
import
com.mortals.xhx.module.matter.service.MatterDatumService
;
import
com.mortals.xhx.module.matter.service.MatterService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.ObjectUtils
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
* DeviceMatterDatumService
* 设备事项申请材料业务 service实现
*
* @author zxfei
* @date 2023-02-25
*/
@Service
(
"deviceMatterDatumService"
)
public
class
DeviceMatterDatumServiceImpl
extends
AbstractCRUDServiceImpl
<
DeviceMatterDatumDao
,
DeviceMatterDatumEntity
,
Long
>
implements
DeviceMatterDatumService
{
@Autowired
private
MatterService
matterService
;
@Autowired
private
DeviceService
deviceService
;
@Autowired
private
MatterDatumService
matterDatumService
;
@Override
protected
void
findAfter
(
DeviceMatterDatumEntity
params
,
PageInfo
pageInfo
,
Context
context
,
List
<
DeviceMatterDatumEntity
>
list
)
throws
AppException
{
//super.findAfter(params, pageInfo, context, list);
list
.
forEach
(
item
->{
List
<
MatterDatumEntity
>
matterDatumEntities
=
matterDatumService
.
find
(
new
MatterDatumQuery
().
matterId
(
item
.
getMatterId
()));
if
(!
ObjectUtils
.
isEmpty
(
matterDatumEntities
)){
item
.
setMatterDatumList
(
matterDatumEntities
);
}
else
{
item
.
setMatterDatumList
(
new
ArrayList
<>());
}
});
}
@Override
protected
void
saveBefore
(
DeviceMatterDatumEntity
entity
,
Context
context
)
throws
AppException
{
super
.
saveBefore
(
entity
,
context
);
int
count
=
this
.
getDao
().
getCount
(
new
DeviceMatterDatumQuery
().
deviceId
(
entity
.
getDeviceId
()).
matterId
(
entity
.
getMatterId
()));
if
(
count
>
0
){
throw
new
AppException
(
"当前设备关联事项已存在,不能新增!"
);
}
//entity.getMatterId()
if
(!
ObjectUtils
.
isEmpty
(
entity
.
getMatterId
())){
MatterEntity
matterEntity
=
matterService
.
get
(
entity
.
getMatterId
());
if
(!
ObjectUtils
.
isEmpty
(
matterEntity
)){
entity
.
setMatterCode
(
matterEntity
.
getMatterNo
());
entity
.
setMatterName
(
matterEntity
.
getMatterName
());
entity
.
setDeptId
(
matterEntity
.
getDeptId
());
entity
.
setDeptCode
(
matterEntity
.
getDeptCode
());
entity
.
setDeptName
(
matterEntity
.
getDeptName
());
}
}
if
(!
ObjectUtils
.
isEmpty
(
entity
.
getDeviceId
())){
DeviceEntity
deviceEntity
=
deviceService
.
get
(
entity
.
getDeviceId
());
if
(!
ObjectUtils
.
isEmpty
(
deviceEntity
)){
entity
.
setDeviceCode
(
deviceEntity
.
getDeviceCode
());
entity
.
setDeviceName
(
deviceEntity
.
getDeviceName
());
}
}
}
@Override
protected
void
updateBefore
(
DeviceMatterDatumEntity
entity
,
Context
context
)
throws
AppException
{
super
.
updateBefore
(
entity
,
context
);
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceServiceImpl.java
View file @
1c185a09
package
com.mortals.xhx.module.device.service.impl
;
import
com.mortals.framework.ap.GlobalSysInfo
;
import
com.mortals.framework.common.Rest
;
import
com.mortals.framework.exception.AppException
;
import
com.mortals.framework.model.Context
;
import
com.mortals.framework.model.PageInfo
;
import
com.mortals.framework.model.Result
;
import
com.mortals.framework.service.impl.AbstractCRUDServiceImpl
;
import
com.mortals.xhx.common.code.YesNoEnum
;
import
com.mortals.xhx.common.key.Constant
;
import
com.mortals.xhx.common.pdu.RespData
;
import
com.mortals.xhx.common.pdu.device.DevicePdu
;
import
com.mortals.xhx.common.utils.BeanUtil
;
import
com.mortals.xhx.feign.device.IDeviceFeign
;
import
com.mortals.xhx.module.device.dao.DeviceDao
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
import
com.mortals.xhx.module.device.service.DeviceService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.BeanUtils
;
import
com.mortals.xhx.module.matter.service.MatterDatumService
;
import
com.mortals.xhx.module.matter.service.MatterService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
import
java.util.stream.Collectors
;
/**
* DeviceService
* 设备 service实现
*
* @author zxfei
* @date 2022-03-09
*/
* DeviceService
* 设备 service实现
*
* @author zxfei
* @date 2023-02-25
*/
@Service
(
"deviceService"
)
@Slf4j
public
class
DeviceServiceImpl
extends
AbstractCRUDServiceImpl
<
DeviceDao
,
DeviceEntity
,
Long
>
implements
DeviceService
{
@Autowired
private
IDeviceFeign
deviceFeign
;
@Autowired
private
MatterService
matterService
;
@Autowired
private
MatterDatumService
matterDatumService
;
@Override
public
Result
<
DeviceEntity
>
find
(
DeviceEntity
entity
,
PageInfo
pageInfo
,
Context
context
)
throws
AppException
{
Result
<
DeviceEntity
>
result
=
new
Result
();
DevicePdu
devicePdu
=
new
DevicePdu
();
BeanUtils
.
copyProperties
(
entity
,
devicePdu
,
BeanUtil
.
getNullPropertyNames
(
entity
));
String
productName
=
GlobalSysInfo
.
getParamValue
(
Constant
.
PARAMS_PRODUCT_NAME
,
"填单机"
);
devicePdu
.
setProductName
(
productName
);
devicePdu
.
setSiteId
(
entity
.
getSiteId
());
Rest
<
RespData
<
List
<
DevicePdu
>>>
rest
=
deviceFeign
.
list
(
devicePdu
);
if
(
rest
.
getCode
().
equals
(
YesNoEnum
.
YES
.
getValue
()))
{
List
<
DeviceEntity
>
collect
=
rest
.
getData
().
getData
().
stream
().
map
(
item
->
{
DeviceEntity
deviceEntity
=
new
DeviceEntity
();
BeanUtils
.
copyProperties
(
item
,
deviceEntity
,
BeanUtil
.
getNullPropertyNames
(
item
));
return
deviceEntity
;
}).
collect
(
Collectors
.
toList
());
result
.
setList
(
collect
);
result
.
setDict
(
rest
.
getDict
());
}
this
.
findAfter
(
entity
,
pageInfo
,
context
,
result
.
getList
());
return
result
;
protected
void
saveBefore
(
DeviceEntity
entity
,
Context
context
)
throws
AppException
{
super
.
saveBefore
(
entity
,
context
);
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/web/DeviceController.java
View file @
1c185a09
package
com.mortals.xhx.module.device.web
;
import
com.alibaba.fastjson.JSON
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.mortals.framework.exception.AppException
;
import
com.mortals.framework.model.Context
;
import
com.mortals.framework.web.BaseCRUDJsonBodyMappingController
;
import
com.mortals.xhx.base.system.param.service.ParamService
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
import
com.mortals.xhx.module.device.service.DeviceService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.Map
;
/**
* 设备
*
* @author zxfei
* @date 2022-06-27
*/
*
* 设备
*
* @author zxfei
* @date 2023-02-25
*/
@RestController
@RequestMapping
(
"device"
)
@Slf4j
public
class
DeviceController
extends
BaseCRUDJsonBodyMappingController
<
DeviceService
,
DeviceEntity
,
Long
>
{
public
class
DeviceController
extends
BaseCRUDJsonBodyMappingController
<
DeviceService
,
DeviceEntity
,
Long
>
{
@Autowired
private
ParamService
paramService
;
public
DeviceController
(){
super
.
setModuleDesc
(
"设备"
);
}
@Override
protected
int
doListAfter
(
DeviceEntity
query
,
Map
<
String
,
Object
>
model
,
Context
context
)
throws
AppException
{
log
.
info
(
"result:{}"
,
JSON
.
toJSONString
(
model
));
return
super
.
doListAfter
(
query
,
model
,
context
);
protected
void
init
(
Map
<
String
,
Object
>
model
,
Context
context
)
{
this
.
addDict
(
model
,
"deviceSrc"
,
paramService
.
getParamBySecondOrganize
(
"Device"
,
"deviceSrc"
));
this
.
addDict
(
model
,
"deviceStatus"
,
paramService
.
getParamBySecondOrganize
(
"Device"
,
"deviceStatus"
));
this
.
addDict
(
model
,
"source"
,
paramService
.
getParamBySecondOrganize
(
"Device"
,
"source"
));
super
.
init
(
model
,
context
);
}
}
\ No newline at end of file
fill-manager/src/main/java/com/mortals/xhx/module/device/web/DeviceMatterDatumController.java
0 → 100644
View file @
1c185a09
package
com.mortals.xhx.module.device.web
;
import
com.mortals.framework.exception.AppException
;
import
com.mortals.framework.model.Context
;
import
com.mortals.framework.web.BaseCRUDJsonBodyMappingController
;
import
com.mortals.xhx.base.system.param.service.ParamService
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumEntity
;
import
com.mortals.xhx.module.device.model.DeviceMatterDatumQuery
;
import
com.mortals.xhx.module.device.service.DeviceMatterDatumService
;
import
com.mortals.xhx.module.matter.model.MatterDatumEntity
;
import
com.mortals.xhx.module.matter.model.MatterDatumQuery
;
import
com.mortals.xhx.module.matter.service.MatterDatumService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Map
;
/**
*
* 设备事项申请材料业务
*
* @author zxfei
* @date 2023-02-25
*/
@RestController
@RequestMapping
(
"device/matter/datum"
)
public
class
DeviceMatterDatumController
extends
BaseCRUDJsonBodyMappingController
<
DeviceMatterDatumService
,
DeviceMatterDatumEntity
,
Long
>
{
@Autowired
private
ParamService
paramService
;
@Autowired
private
MatterDatumService
matterDatumService
;
public
DeviceMatterDatumController
(){
super
.
setModuleDesc
(
"设备事项申请材料业务"
);
}
@Override
protected
void
init
(
Map
<
String
,
Object
>
model
,
Context
context
)
{
this
.
addDict
(
model
,
"source"
,
paramService
.
getParamBySecondOrganize
(
"DeviceMatterDatum"
,
"source"
));
this
.
addDict
(
model
,
"isRecommend"
,
paramService
.
getParamBySecondOrganize
(
"DeviceMatterDatum"
,
"isRecommend"
));
super
.
init
(
model
,
context
);
}
@Override
protected
void
batchSaveBefore
(
List
<
DeviceMatterDatumEntity
>
list
,
Map
<
String
,
Object
>
model
,
Context
context
)
throws
AppException
{
Iterator
<
DeviceMatterDatumEntity
>
iterator
=
list
.
iterator
();
while
(
iterator
.
hasNext
())
{
DeviceMatterDatumEntity
next
=
iterator
.
next
();
int
count
=
this
.
service
.
getDao
().
getCount
(
new
DeviceMatterDatumQuery
().
deviceId
(
next
.
getDeviceId
()).
matterId
(
next
.
getMatterId
()));
if
(
count
>
0
){
iterator
.
remove
();
}
}
super
.
batchSaveBefore
(
list
,
model
,
context
);
}
@Override
protected
int
infoAfter
(
Long
id
,
Map
<
String
,
Object
>
model
,
DeviceMatterDatumEntity
entity
,
Context
context
)
throws
AppException
{
List
<
MatterDatumEntity
>
matterDatumEntities
=
matterDatumService
.
find
(
new
MatterDatumQuery
().
matterId
(
entity
.
getMatterId
()));
entity
.
setMatterDatumList
(
matterDatumEntities
);
return
super
.
infoAfter
(
id
,
model
,
entity
,
context
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment