mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 16:30:29 +08:00
chore(v0.11): 全路径纳入版本库与走查整改
- .gitignore:显式放行全部 maven-*、scripts、dev-support、frontend、反1、artifacts、历史导出目录 - 新增跟踪:device-manager/device-sdk/legacy-public、davinci-manager、cwos-*、cwos-resource 等源码与附属资源 - davinci FileStorageManagerImpl:Feign Response 关闭、绝对 URL 拉流 SSRF 校验(协议/主机/解析地址) - davinci OuterCallFeignClient:补充契约说明 - cwos-common-aks AksConstant:final 类 + 私有构造防误实例化 - device-manager DeviceConstant:沿用 DEFAULT_APPLICATIONID 拼写修正 Made-with: Cursor
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceAttrDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 7532219742072618468L;
|
||||
private String deviceId;
|
||||
private List<String> ids;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceAttrEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -5488036695068583600L;
|
||||
private String deviceTypeId;
|
||||
private String deviceId;
|
||||
private String commandCode;
|
||||
private String attrCode;
|
||||
private String attrDisplay;
|
||||
private String attrValue;
|
||||
private Integer orderBy;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 54 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 58 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 62 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 66 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getCommandCode() {
|
||||
/* 70 */ return this.commandCode;
|
||||
}
|
||||
|
||||
public void setCommandCode(String commandCode) {
|
||||
/* 74 */ this.commandCode = commandCode;
|
||||
}
|
||||
|
||||
public String getAttrCode() {
|
||||
/* 78 */ return this.attrCode;
|
||||
}
|
||||
|
||||
public void setAttrCode(String attrCode) {
|
||||
/* 82 */ this.attrCode = attrCode;
|
||||
}
|
||||
|
||||
public String getAttrDisplay() {
|
||||
/* 86 */ return this.attrDisplay;
|
||||
}
|
||||
|
||||
public void setAttrDisplay(String attrDisplay) {
|
||||
/* 90 */ this.attrDisplay = attrDisplay;
|
||||
}
|
||||
|
||||
public String getAttrValue() {
|
||||
/* 94 */ return this.attrValue;
|
||||
}
|
||||
|
||||
public void setAttrValue(String attrValue) {
|
||||
/* 98 */ this.attrValue = attrValue;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceAttrGetsDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 4291055216656240573L;
|
||||
private List<String> deviceIds;
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceAttrQueryDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 4291055216656240573L;
|
||||
private String deviceId;
|
||||
private String commandCode;
|
||||
private String attrCode;
|
||||
private String deviceTypeId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getCommandCode() {
|
||||
return this.commandCode;
|
||||
}
|
||||
|
||||
public void setCommandCode(String commandCode) {
|
||||
this.commandCode = commandCode;
|
||||
}
|
||||
|
||||
public String getAttrCode() {
|
||||
return this.attrCode;
|
||||
}
|
||||
|
||||
public void setAttrCode(String attrCode) {
|
||||
this.attrCode = attrCode;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceAttrResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 8188846432568002619L;
|
||||
private String attrCode;
|
||||
private String commandCode;
|
||||
private String attrDisplay;
|
||||
private String attrValue;
|
||||
private String deviceId;
|
||||
private String deviceTypeId;
|
||||
private Integer orderBy;
|
||||
|
||||
public String getAttrCode() {
|
||||
/* 54 */ return this.attrCode;
|
||||
}
|
||||
|
||||
public void setAttrCode(String attrCode) {
|
||||
/* 58 */ this.attrCode = attrCode;
|
||||
}
|
||||
|
||||
public String getCommandCode() {
|
||||
/* 62 */ return this.commandCode;
|
||||
}
|
||||
|
||||
public void setCommandCode(String commandCode) {
|
||||
/* 66 */ this.commandCode = commandCode;
|
||||
}
|
||||
|
||||
public String getAttrDisplay() {
|
||||
/* 70 */ return this.attrDisplay;
|
||||
}
|
||||
|
||||
public void setAttrDisplay(String attrDisplay) {
|
||||
/* 74 */ this.attrDisplay = attrDisplay;
|
||||
}
|
||||
|
||||
public String getAttrValue() {
|
||||
/* 78 */ return this.attrValue;
|
||||
}
|
||||
|
||||
public void setAttrValue(String attrValue) {
|
||||
/* 82 */ this.attrValue = attrValue;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 86 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 90 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 94 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 98 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceDeleteDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4291055216656240573L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+253
@@ -0,0 +1,253 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 119541598673489550L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String crowServiceId;
|
||||
private String custId;
|
||||
private String deviceCode;
|
||||
private String parentCode;
|
||||
private String deviceModel;
|
||||
private String deviceName;
|
||||
private String deviceGroupId;
|
||||
private String deviceTypeId;
|
||||
private String latitude;
|
||||
private String longitude;
|
||||
private String altitude;
|
||||
private Long lastPositionTime;
|
||||
private Long lastHeartbeatTime;
|
||||
private Short status;
|
||||
private String remark;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getCrowServiceId() {
|
||||
return this.crowServiceId;
|
||||
}
|
||||
|
||||
public void setCrowServiceId(String crowServiceId) {
|
||||
this.crowServiceId = crowServiceId;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
this.custId = custId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceModel() {
|
||||
return this.deviceModel;
|
||||
}
|
||||
|
||||
public void setDeviceModel(String deviceModel) {
|
||||
this.deviceModel = deviceModel;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDeviceGroupId() {
|
||||
return this.deviceGroupId;
|
||||
}
|
||||
|
||||
public void setDeviceGroupId(String deviceGroupId) {
|
||||
this.deviceGroupId = deviceGroupId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return this.latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return this.longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public Long getLastPositionTime() {
|
||||
return this.lastPositionTime;
|
||||
}
|
||||
|
||||
public void setLastPositionTime(Long lastPositionTime) {
|
||||
this.lastPositionTime = lastPositionTime;
|
||||
}
|
||||
|
||||
public Long getLastHeartbeatTime() {
|
||||
return this.lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public void setLastHeartbeatTime(Long lastHeartbeatTime) {
|
||||
this.lastHeartbeatTime = lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getParentCode() {
|
||||
return this.parentCode;
|
||||
}
|
||||
|
||||
public void setParentCode(String parentCode) {
|
||||
this.parentCode = parentCode;
|
||||
}
|
||||
|
||||
public String getAltitude() {
|
||||
return this.altitude;
|
||||
}
|
||||
|
||||
public void setAltitude(String altitude) {
|
||||
this.altitude = altitude;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -2921717570593806012L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private List<String> ids;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceInGroupDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -4459032093856725871L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private List<String> deviceGroupIds;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getDeviceGroupIds() {
|
||||
return this.deviceGroupIds;
|
||||
}
|
||||
|
||||
public void setDeviceGroupIds(List<String> deviceGroupIds) {
|
||||
this.deviceGroupIds = deviceGroupIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+269
@@ -0,0 +1,269 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceQueryDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -8810015855541368017L;
|
||||
private String deviceCode;
|
||||
private String parentCode;
|
||||
private List<String> deviceCodes;
|
||||
private String deviceModel;
|
||||
private String deviceName;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String custId;
|
||||
private List<String> custIds;
|
||||
private String deviceGroupId;
|
||||
private String deviceTypeId;
|
||||
private Short status;
|
||||
private List<String> deviceTypeIds;
|
||||
private List<String> crowServiceIds;
|
||||
private Long lastHeartTimeBeginTime;
|
||||
private Long lastHeartTimeEndTime;
|
||||
private List<String> deviceGroupIds;
|
||||
|
||||
public DeviceQueryDTO() {}
|
||||
|
||||
public DeviceQueryDTO(List<String> deviceTypeIds) {
|
||||
setDeviceTypeIds(deviceTypeIds);
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceModel() {
|
||||
return this.deviceModel;
|
||||
}
|
||||
|
||||
public void setDeviceModel(String deviceModel) {
|
||||
this.deviceModel = deviceModel;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
this.custId = custId;
|
||||
}
|
||||
|
||||
public List<String> getCustIds() {
|
||||
return this.custIds;
|
||||
}
|
||||
|
||||
public void setCustIds(List<String> custIds) {
|
||||
this.custIds = custIds;
|
||||
}
|
||||
|
||||
public List<String> getCrowServiceIds() {
|
||||
return this.crowServiceIds;
|
||||
}
|
||||
|
||||
public void setCrowServiceIds(List<String> crowServiceIds) {
|
||||
this.crowServiceIds = crowServiceIds;
|
||||
}
|
||||
|
||||
public String getDeviceGroupId() {
|
||||
return this.deviceGroupId;
|
||||
}
|
||||
|
||||
public void setDeviceGroupId(String deviceGroupId) {
|
||||
this.deviceGroupId = deviceGroupId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public List<String> getDeviceTypeIds() {
|
||||
return this.deviceTypeIds;
|
||||
}
|
||||
|
||||
public void setDeviceTypeIds(List<String> deviceTypeIds) {
|
||||
this.deviceTypeIds = deviceTypeIds;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getLastHeartTimeBeginTime() {
|
||||
return this.lastHeartTimeBeginTime;
|
||||
}
|
||||
|
||||
public void setLastHeartTimeBeginTime(Long lastHeartTimeBeginTime) {
|
||||
this.lastHeartTimeBeginTime = lastHeartTimeBeginTime;
|
||||
}
|
||||
|
||||
public Long getLastHeartTimeEndTime() {
|
||||
return this.lastHeartTimeEndTime;
|
||||
}
|
||||
|
||||
public void setLastHeartTimeEndTime(Long lastHeartTimeEndTime) {
|
||||
this.lastHeartTimeEndTime = lastHeartTimeEndTime;
|
||||
}
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
|
||||
public List<String> getDeviceGroupIds() {
|
||||
return this.deviceGroupIds;
|
||||
}
|
||||
|
||||
public void setDeviceGroupIds(List<String> deviceGroupIds) {
|
||||
this.deviceGroupIds = deviceGroupIds;
|
||||
}
|
||||
|
||||
public String getParentCode() {
|
||||
return this.parentCode;
|
||||
}
|
||||
|
||||
public void setParentCode(String parentCode) {
|
||||
this.parentCode = parentCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+253
@@ -0,0 +1,253 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -2916997451783405867L;
|
||||
private String deviceCode;
|
||||
private String parentCode;
|
||||
private String deviceModel;
|
||||
private String deviceName;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String deviceGroupId;
|
||||
private String deviceTypeId;
|
||||
private Integer status;
|
||||
private String crowServiceId;
|
||||
private String custId;
|
||||
private String latitude;
|
||||
private String longitude;
|
||||
private String altitude;
|
||||
private Long lastPositionTime;
|
||||
private Long lastHeartbeatTime;
|
||||
private String remark;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceModel() {
|
||||
return this.deviceModel;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public String getDeviceGroupId() {
|
||||
return this.deviceGroupId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public String getCrowServiceId() {
|
||||
return this.crowServiceId;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
return this.custId;
|
||||
}
|
||||
|
||||
public Long getLastHeartbeatTime() {
|
||||
return this.lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceModel(String deviceModel) {
|
||||
this.deviceModel = deviceModel;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setDeviceGroupId(String deviceGroupId) {
|
||||
this.deviceGroupId = deviceGroupId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setCrowServiceId(String crowServiceId) {
|
||||
this.crowServiceId = crowServiceId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
this.custId = custId;
|
||||
}
|
||||
|
||||
public void setLastHeartbeatTime(Long lastHeartbeatTime) {
|
||||
this.lastHeartbeatTime = lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return this.latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return this.longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public Long getLastPositionTime() {
|
||||
return this.lastPositionTime;
|
||||
}
|
||||
|
||||
public void setLastPositionTime(Long lastPositionTime) {
|
||||
this.lastPositionTime = lastPositionTime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getParentCode() {
|
||||
return this.parentCode;
|
||||
}
|
||||
|
||||
public void setParentCode(String parentCode) {
|
||||
this.parentCode = parentCode;
|
||||
}
|
||||
|
||||
public String getAltitude() {
|
||||
return this.altitude;
|
||||
}
|
||||
|
||||
public void setAltitude(String altitude) {
|
||||
this.altitude = altitude;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
package cn.cloudwalk.common.device.bean.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -8554490421352274975L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private List<String> ids;
|
||||
private String businessId;
|
||||
private Short status;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.common.device.bean.group.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGroupDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 2242182134134213630L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private List<String> ids;
|
||||
private String custId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
this.custId = custId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
package cn.cloudwalk.common.device.bean.group.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGroupEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -3080305257082849370L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String custId;
|
||||
private String groupCode;
|
||||
private String groupName;
|
||||
private String nodeId;
|
||||
private String remark;
|
||||
|
||||
public String getApplicationId() {
|
||||
/* 54 */ return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
/* 58 */ this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 62 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 66 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
/* 70 */ return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
/* 74 */ this.custId = custId;
|
||||
}
|
||||
|
||||
public String getGroupCode() {
|
||||
/* 78 */ return this.groupCode;
|
||||
}
|
||||
|
||||
public void setGroupCode(String groupCode) {
|
||||
/* 82 */ this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getGroupName() {
|
||||
/* 86 */ return this.groupName;
|
||||
}
|
||||
|
||||
public void setGroupName(String groupName) {
|
||||
/* 90 */ this.groupName = groupName;
|
||||
}
|
||||
|
||||
public String getNodeId() {
|
||||
/* 94 */ return this.nodeId;
|
||||
}
|
||||
|
||||
public void setNodeId(String nodeId) {
|
||||
/* 98 */ this.nodeId = nodeId;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.common.device.bean.group.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGroupGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -4946078252471693189L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private List<String> ids;
|
||||
private String custId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
this.custId = custId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.common.device.bean.group.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBasePeriod;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGroupQueryDTO
|
||||
extends CloudwalkBasePeriod
|
||||
{
|
||||
private static final long serialVersionUID = -1353911852214721671L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String groupCode;
|
||||
private String groupName;
|
||||
private String custId;
|
||||
private String nodeId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getGroupCode() {
|
||||
return this.groupCode;
|
||||
}
|
||||
|
||||
public void setGroupCode(String groupCode) {
|
||||
this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getGroupName() {
|
||||
return this.groupName;
|
||||
}
|
||||
|
||||
public void setGroupName(String groupName) {
|
||||
this.groupName = groupName;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
this.custId = custId;
|
||||
}
|
||||
|
||||
public String getNodeId() {
|
||||
return this.nodeId;
|
||||
}
|
||||
|
||||
public void setNodeId(String nodeId) {
|
||||
this.nodeId = nodeId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
package cn.cloudwalk.common.device.bean.group.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGroupResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 9222437812227606075L;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String groupCode;
|
||||
private String groupName;
|
||||
private String custId;
|
||||
private String nodeId;
|
||||
private String remark;
|
||||
|
||||
public String getApplicationId() {
|
||||
/* 54 */ return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
/* 58 */ this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 62 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 66 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getGroupCode() {
|
||||
/* 70 */ return this.groupCode;
|
||||
}
|
||||
|
||||
public void setGroupCode(String groupCode) {
|
||||
/* 74 */ this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getGroupName() {
|
||||
/* 78 */ return this.groupName;
|
||||
}
|
||||
|
||||
public void setGroupName(String groupName) {
|
||||
/* 82 */ this.groupName = groupName;
|
||||
}
|
||||
|
||||
public String getCustId() {
|
||||
/* 86 */ return this.custId;
|
||||
}
|
||||
|
||||
public void setCustId(String custId) {
|
||||
/* 90 */ this.custId = custId;
|
||||
}
|
||||
|
||||
public String getNodeId() {
|
||||
/* 94 */ return this.nodeId;
|
||||
}
|
||||
|
||||
public void setNodeId(String nodeId) {
|
||||
/* 98 */ this.nodeId = nodeId;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
package cn.cloudwalk.common.device.bean.group.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicesAndGroupDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 1191366313600834800L;
|
||||
private List<String> ids;
|
||||
private String deviceGroupId;
|
||||
private String serviceCode;
|
||||
private String applicationId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getDeviceGroupId() {
|
||||
return this.deviceGroupId;
|
||||
}
|
||||
|
||||
public void setDeviceGroupId(String deviceGroupId) {
|
||||
this.deviceGroupId = deviceGroupId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+59
@@ -0,0 +1,59 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceBaseDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1108100822726258384L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Long reportTime;
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return 1108100822726258384L;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+173
@@ -0,0 +1,173 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceCpuDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6318524975099901695L;
|
||||
private String id;
|
||||
private String logId;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String cpuName;
|
||||
private Integer numberOfProcessors;
|
||||
private Integer processorArchitecture;
|
||||
private Integer processorType;
|
||||
private Integer cpuRatio;
|
||||
private Long runTime;
|
||||
private Long reportTime;
|
||||
private Integer temperature;
|
||||
|
||||
public String getLogId() {
|
||||
/* 77 */ return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
/* 81 */ this.logId = logId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
/* 85 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 89 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 93 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 97 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getCpuName() {
|
||||
return this.cpuName;
|
||||
}
|
||||
|
||||
public void setCpuName(String cpuName) {
|
||||
this.cpuName = cpuName;
|
||||
}
|
||||
|
||||
public Integer getNumberOfProcessors() {
|
||||
return this.numberOfProcessors;
|
||||
}
|
||||
|
||||
public void setNumberOfProcessors(Integer numberOfProcessors) {
|
||||
this.numberOfProcessors = numberOfProcessors;
|
||||
}
|
||||
|
||||
public Integer getProcessorArchitecture() {
|
||||
return this.processorArchitecture;
|
||||
}
|
||||
|
||||
public void setProcessorArchitecture(Integer processorArchitecture) {
|
||||
this.processorArchitecture = processorArchitecture;
|
||||
}
|
||||
|
||||
public Integer getProcessorType() {
|
||||
return this.processorType;
|
||||
}
|
||||
|
||||
public void setProcessorType(Integer processorType) {
|
||||
this.processorType = processorType;
|
||||
}
|
||||
|
||||
public Integer getCpuRatio() {
|
||||
return this.cpuRatio;
|
||||
}
|
||||
|
||||
public void setCpuRatio(Integer cpuRatio) {
|
||||
this.cpuRatio = cpuRatio;
|
||||
}
|
||||
|
||||
public Long getRunTime() {
|
||||
return this.runTime;
|
||||
}
|
||||
|
||||
public void setRunTime(Long runTime) {
|
||||
this.runTime = runTime;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
|
||||
public Integer getTemperature() {
|
||||
return this.temperature;
|
||||
}
|
||||
|
||||
public void setTemperature(Integer temperature) {
|
||||
this.temperature = temperature;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+147
@@ -0,0 +1,147 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceCpuResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -3397842969194037972L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String cpuName;
|
||||
private Integer numberOfProcessors;
|
||||
private Integer processorArchitecture;
|
||||
private Integer processorType;
|
||||
private Integer cpuRatio;
|
||||
private Long runTime;
|
||||
private Long reportTime;
|
||||
|
||||
public String getId() {
|
||||
/* 67 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 71 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 75 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 79 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 83 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 87 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getCpuName() {
|
||||
/* 91 */ return this.cpuName;
|
||||
}
|
||||
|
||||
public void setCpuName(String cpuName) {
|
||||
/* 95 */ this.cpuName = cpuName;
|
||||
}
|
||||
|
||||
public Integer getNumberOfProcessors() {
|
||||
/* 99 */ return this.numberOfProcessors;
|
||||
}
|
||||
|
||||
public void setNumberOfProcessors(Integer numberOfProcessors) {
|
||||
this.numberOfProcessors = numberOfProcessors;
|
||||
}
|
||||
|
||||
public Integer getProcessorArchitecture() {
|
||||
return this.processorArchitecture;
|
||||
}
|
||||
|
||||
public void setProcessorArchitecture(Integer processorArchitecture) {
|
||||
this.processorArchitecture = processorArchitecture;
|
||||
}
|
||||
|
||||
public Integer getProcessorType() {
|
||||
return this.processorType;
|
||||
}
|
||||
|
||||
public void setProcessorType(Integer processorType) {
|
||||
this.processorType = processorType;
|
||||
}
|
||||
|
||||
public Integer getCpuRatio() {
|
||||
return this.cpuRatio;
|
||||
}
|
||||
|
||||
public void setCpuRatio(Integer cpuRatio) {
|
||||
this.cpuRatio = cpuRatio;
|
||||
}
|
||||
|
||||
public Long getRunTime() {
|
||||
return this.runTime;
|
||||
}
|
||||
|
||||
public void setRunTime(Long runTime) {
|
||||
this.runTime = runTime;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+212
@@ -0,0 +1,212 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceDiskDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 5658143125988588067L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String rootPathName;
|
||||
private Long totalNumberOfBytes;
|
||||
private Long freeBytes;
|
||||
private Integer isInstall;
|
||||
private Long reportTime;
|
||||
private Long inodeTotal;
|
||||
private Long inodeUsed;
|
||||
private Integer iops;
|
||||
private Integer throughput;
|
||||
private Long waitTime;
|
||||
private Double electricVoltage;
|
||||
private Double electricCurrent;
|
||||
|
||||
public String getId() {
|
||||
/* 92 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 96 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getRootPathName() {
|
||||
return this.rootPathName;
|
||||
}
|
||||
|
||||
public void setRootPathName(String rootPathName) {
|
||||
this.rootPathName = rootPathName;
|
||||
}
|
||||
|
||||
public Long getTotalNumberOfBytes() {
|
||||
return this.totalNumberOfBytes;
|
||||
}
|
||||
|
||||
public void setTotalNumberOfBytes(Long totalNumberOfBytes) {
|
||||
this.totalNumberOfBytes = totalNumberOfBytes;
|
||||
}
|
||||
|
||||
public Long getFreeBytes() {
|
||||
return this.freeBytes;
|
||||
}
|
||||
|
||||
public void setFreeBytes(Long freeBytes) {
|
||||
this.freeBytes = freeBytes;
|
||||
}
|
||||
|
||||
public Integer getIsInstall() {
|
||||
return this.isInstall;
|
||||
}
|
||||
|
||||
public void setIsInstall(Integer isInstall) {
|
||||
this.isInstall = isInstall;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
|
||||
public Long getInodeTotal() {
|
||||
return this.inodeTotal;
|
||||
}
|
||||
|
||||
public void setInodeTotal(Long inodeTotal) {
|
||||
this.inodeTotal = inodeTotal;
|
||||
}
|
||||
|
||||
public Long getInodeUsed() {
|
||||
return this.inodeUsed;
|
||||
}
|
||||
|
||||
public void setInodeUsed(Long inodeUsed) {
|
||||
this.inodeUsed = inodeUsed;
|
||||
}
|
||||
|
||||
public Integer getIops() {
|
||||
return this.iops;
|
||||
}
|
||||
|
||||
public void setIops(Integer iops) {
|
||||
this.iops = iops;
|
||||
}
|
||||
|
||||
public Integer getThroughput() {
|
||||
return this.throughput;
|
||||
}
|
||||
|
||||
public void setThroughput(Integer throughput) {
|
||||
this.throughput = throughput;
|
||||
}
|
||||
|
||||
public Long getWaitTime() {
|
||||
return this.waitTime;
|
||||
}
|
||||
|
||||
public void setWaitTime(Long waitTime) {
|
||||
this.waitTime = waitTime;
|
||||
}
|
||||
|
||||
public Double getElectricVoltage() {
|
||||
return this.electricVoltage;
|
||||
}
|
||||
|
||||
public void setElectricVoltage(Double electricVoltage) {
|
||||
this.electricVoltage = electricVoltage;
|
||||
}
|
||||
|
||||
public Double getElectricCurrent() {
|
||||
return this.electricCurrent;
|
||||
}
|
||||
|
||||
public void setElectricCurrent(Double electricCurrent) {
|
||||
this.electricCurrent = electricCurrent;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+121
@@ -0,0 +1,121 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceDiskResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5539935836946079741L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String rootPathName;
|
||||
private Long totalNumberOfBytes;
|
||||
private Long freeBytes;
|
||||
private Integer isInstall;
|
||||
private Long reportTime;
|
||||
|
||||
public String getId() {
|
||||
/* 57 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 61 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 65 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 69 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 73 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 77 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getRootPathName() {
|
||||
/* 81 */ return this.rootPathName;
|
||||
}
|
||||
|
||||
public void setRootPathName(String rootPathName) {
|
||||
/* 85 */ this.rootPathName = rootPathName;
|
||||
}
|
||||
|
||||
public Long getTotalNumberOfBytes() {
|
||||
/* 89 */ return this.totalNumberOfBytes;
|
||||
}
|
||||
|
||||
public void setTotalNumberOfBytes(Long totalNumberOfBytes) {
|
||||
/* 93 */ this.totalNumberOfBytes = totalNumberOfBytes;
|
||||
}
|
||||
|
||||
public Long getFreeBytes() {
|
||||
/* 97 */ return this.freeBytes;
|
||||
}
|
||||
|
||||
public void setFreeBytes(Long freeBytes) {
|
||||
this.freeBytes = freeBytes;
|
||||
}
|
||||
|
||||
public Integer getIsInstall() {
|
||||
return this.isInstall;
|
||||
}
|
||||
|
||||
public void setIsInstall(Integer isInstall) {
|
||||
this.isInstall = isInstall;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+121
@@ -0,0 +1,121 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGpuDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6318524975099901695L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String gpuName;
|
||||
private Integer gpuRatio;
|
||||
private Integer videoMemory;
|
||||
private Long reportTime;
|
||||
private Long runTime;
|
||||
|
||||
public String getId() {
|
||||
/* 57 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 61 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 65 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 69 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 73 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 77 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getGpuName() {
|
||||
/* 81 */ return this.gpuName;
|
||||
}
|
||||
|
||||
public void setGpuName(String gpuName) {
|
||||
/* 85 */ this.gpuName = gpuName;
|
||||
}
|
||||
|
||||
public Integer getGpuRatio() {
|
||||
/* 89 */ return this.gpuRatio;
|
||||
}
|
||||
|
||||
public void setGpuRatio(Integer gpuRatio) {
|
||||
/* 93 */ this.gpuRatio = gpuRatio;
|
||||
}
|
||||
|
||||
public Integer getVideoMemory() {
|
||||
/* 97 */ return this.videoMemory;
|
||||
}
|
||||
|
||||
public void setVideoMemory(Integer videoMemory) {
|
||||
this.videoMemory = videoMemory;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
|
||||
public Long getRunTime() {
|
||||
return this.runTime;
|
||||
}
|
||||
|
||||
public void setRunTime(Long runTime) {
|
||||
this.runTime = runTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+121
@@ -0,0 +1,121 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceGpuResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6318524975099901695L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String gpuName;
|
||||
private Integer gpuRatio;
|
||||
private Integer videoMemory;
|
||||
private Long reportTime;
|
||||
private Long runTime;
|
||||
|
||||
public String getId() {
|
||||
/* 57 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 61 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 65 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 69 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 73 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 77 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getGpuName() {
|
||||
/* 81 */ return this.gpuName;
|
||||
}
|
||||
|
||||
public void setGpuName(String gpuName) {
|
||||
/* 85 */ this.gpuName = gpuName;
|
||||
}
|
||||
|
||||
public Integer getGpuRatio() {
|
||||
/* 89 */ return this.gpuRatio;
|
||||
}
|
||||
|
||||
public void setGpuRatio(Integer gpuRatio) {
|
||||
/* 93 */ this.gpuRatio = gpuRatio;
|
||||
}
|
||||
|
||||
public Integer getVideoMemory() {
|
||||
/* 97 */ return this.videoMemory;
|
||||
}
|
||||
|
||||
public void setVideoMemory(Integer videoMemory) {
|
||||
this.videoMemory = videoMemory;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
|
||||
public Long getRunTime() {
|
||||
return this.runTime;
|
||||
}
|
||||
|
||||
public void setRunTime(Long runTime) {
|
||||
this.runTime = runTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceHealthDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 4433517125984061668L;
|
||||
public List<String> deviceCodes;
|
||||
private Long lastHeartbeatTime;
|
||||
|
||||
public DeviceHealthDTO() {}
|
||||
|
||||
public DeviceHealthDTO(List<String> deviceCodes) {
|
||||
setDeviceCodes(deviceCodes);
|
||||
}
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
|
||||
public Long getLastHeartbeatTime() {
|
||||
return this.lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public void setLastHeartbeatTime(Long lastHeartbeatTime) {
|
||||
this.lastHeartbeatTime = lastHeartbeatTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+107
@@ -0,0 +1,107 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceMemoryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1830579546560579033L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer memoryLoad;
|
||||
private Long availPhys;
|
||||
private Long totalPhys;
|
||||
private Long reportTime;
|
||||
|
||||
public String getId() {
|
||||
/* 51 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 55 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 59 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 63 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 67 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 71 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getMemoryLoad() {
|
||||
/* 75 */ return this.memoryLoad;
|
||||
}
|
||||
|
||||
public void setMemoryLoad(Integer memoryLoad) {
|
||||
/* 79 */ this.memoryLoad = memoryLoad;
|
||||
}
|
||||
|
||||
public Long getAvailPhys() {
|
||||
/* 83 */ return this.availPhys;
|
||||
}
|
||||
|
||||
public void setAvailPhys(Long availPhys) {
|
||||
/* 87 */ this.availPhys = availPhys;
|
||||
}
|
||||
|
||||
public Long getTotalPhys() {
|
||||
/* 91 */ return this.totalPhys;
|
||||
}
|
||||
|
||||
public void setTotalPhys(Long totalPhys) {
|
||||
/* 95 */ this.totalPhys = totalPhys;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
/* 99 */ return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+108
@@ -0,0 +1,108 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceMemoryResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -972964577831168328L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer memoryLoad;
|
||||
private Long availPhys;
|
||||
private Long totalPhys;
|
||||
private Long reportTime;
|
||||
|
||||
public String getId() {
|
||||
/* 52 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 56 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 60 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 64 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 68 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 72 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getMemoryLoad() {
|
||||
/* 76 */ return this.memoryLoad;
|
||||
}
|
||||
|
||||
public void setMemoryLoad(Integer memoryLoad) {
|
||||
/* 80 */ this.memoryLoad = memoryLoad;
|
||||
}
|
||||
|
||||
public Long getAvailPhys() {
|
||||
/* 84 */ return this.availPhys;
|
||||
}
|
||||
|
||||
public void setAvailPhys(Long availPhys) {
|
||||
/* 88 */ this.availPhys = availPhys;
|
||||
}
|
||||
|
||||
public Long getTotalPhys() {
|
||||
/* 92 */ return this.totalPhys;
|
||||
}
|
||||
|
||||
public void setTotalPhys(Long totalPhys) {
|
||||
/* 96 */ this.totalPhys = totalPhys;
|
||||
}
|
||||
|
||||
public Long getReportTime() {
|
||||
return this.reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(Long reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+107
@@ -0,0 +1,107 @@
|
||||
package cn.cloudwalk.common.device.bean.health.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceNetworkDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7378965470503823624L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Long runTime;
|
||||
private Integer throughput;
|
||||
private Integer bandWidth;
|
||||
private Long waitTime;
|
||||
|
||||
public String getId() {
|
||||
/* 51 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 55 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 59 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 63 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 67 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 71 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Long getRunTime() {
|
||||
/* 75 */ return this.runTime;
|
||||
}
|
||||
|
||||
public void setRunTime(Long runTime) {
|
||||
/* 79 */ this.runTime = runTime;
|
||||
}
|
||||
|
||||
public Integer getThroughput() {
|
||||
/* 83 */ return this.throughput;
|
||||
}
|
||||
|
||||
public void setThroughput(Integer throughput) {
|
||||
/* 87 */ this.throughput = throughput;
|
||||
}
|
||||
|
||||
public Integer getBandWidth() {
|
||||
/* 91 */ return this.bandWidth;
|
||||
}
|
||||
|
||||
public void setBandWidth(Integer bandWidth) {
|
||||
/* 95 */ this.bandWidth = bandWidth;
|
||||
}
|
||||
|
||||
public Long getWaitTime() {
|
||||
/* 99 */ return this.waitTime;
|
||||
}
|
||||
|
||||
public void setWaitTime(Long waitTime) {
|
||||
this.waitTime = waitTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package cn.cloudwalk.common.device.bean.logs.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceLogsDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 8734330091777639788L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+160
@@ -0,0 +1,160 @@
|
||||
package cn.cloudwalk.common.device.bean.logs.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceLogsEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 114166139678141097L;
|
||||
private String deviceCode;
|
||||
private String logId;
|
||||
private Integer logCode;
|
||||
private String logType;
|
||||
private Long logTime;
|
||||
private String logDesc;
|
||||
private String deviceId;
|
||||
private String deviceName;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 72 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 76 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getLogId() {
|
||||
/* 80 */ return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
/* 84 */ this.logId = logId;
|
||||
}
|
||||
|
||||
public String getLogType() {
|
||||
/* 88 */ return this.logType;
|
||||
}
|
||||
|
||||
public void setLogType(String logType) {
|
||||
/* 92 */ this.logType = logType;
|
||||
}
|
||||
|
||||
public Long getLogTime() {
|
||||
/* 96 */ return this.logTime;
|
||||
}
|
||||
|
||||
public void setLogTime(Long logTime) {
|
||||
this.logTime = logTime;
|
||||
}
|
||||
|
||||
public String getLogDesc() {
|
||||
return this.logDesc;
|
||||
}
|
||||
|
||||
public void setLogDesc(String logDesc) {
|
||||
this.logDesc = logDesc;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getLogCode() {
|
||||
return this.logCode;
|
||||
}
|
||||
|
||||
public void setLogCode(Integer logCode) {
|
||||
this.logCode = logCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package cn.cloudwalk.common.device.bean.logs.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceLogsGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 5788600518027487437L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+150
@@ -0,0 +1,150 @@
|
||||
package cn.cloudwalk.common.device.bean.logs.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceLogsQueryDTO
|
||||
extends CloudwalkBasePageForm
|
||||
{
|
||||
private static final long serialVersionUID = -169619009833881762L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer logCode;
|
||||
private List<String> deviceIds;
|
||||
private String logId;
|
||||
private String logType;
|
||||
private String deviceName;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
|
||||
public Integer getLogCode() {
|
||||
/* 70 */ return this.logCode;
|
||||
}
|
||||
|
||||
public void setLogCode(Integer logCode) {
|
||||
/* 74 */ this.logCode = logCode;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 78 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 82 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 86 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 90 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getLogId() {
|
||||
/* 94 */ return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
/* 98 */ this.logId = logId;
|
||||
}
|
||||
|
||||
public String getLogType() {
|
||||
return this.logType;
|
||||
}
|
||||
|
||||
public void setLogType(String logType) {
|
||||
this.logType = logType;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+160
@@ -0,0 +1,160 @@
|
||||
package cn.cloudwalk.common.device.bean.logs.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceLogsResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -6360186016670936419L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String logId;
|
||||
private Integer logCode;
|
||||
private String logType;
|
||||
private Long logTime;
|
||||
private String logDesc;
|
||||
private String deviceName;
|
||||
private String applicationId;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 72 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 76 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 80 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 84 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getLogId() {
|
||||
/* 88 */ return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
/* 92 */ this.logId = logId;
|
||||
}
|
||||
|
||||
public Integer getLogCode() {
|
||||
/* 96 */ return this.logCode;
|
||||
}
|
||||
|
||||
public void setLogCode(Integer logCode) {
|
||||
this.logCode = logCode;
|
||||
}
|
||||
|
||||
public String getLogType() {
|
||||
return this.logType;
|
||||
}
|
||||
|
||||
public void setLogType(String logType) {
|
||||
this.logType = logType;
|
||||
}
|
||||
|
||||
public Long getLogTime() {
|
||||
return this.logTime;
|
||||
}
|
||||
|
||||
public void setLogTime(Long logTime) {
|
||||
this.logTime = logTime;
|
||||
}
|
||||
|
||||
public String getLogDesc() {
|
||||
return this.logDesc;
|
||||
}
|
||||
|
||||
public void setLogDesc(String logDesc) {
|
||||
this.logDesc = logDesc;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+124
@@ -0,0 +1,124 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AdvertisementResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -90797168574821354L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Integer shufflingInterval;
|
||||
private String advertisementId;
|
||||
private Integer showSwitch;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 48 */ return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 56 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceType() {
|
||||
/* 64 */ return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
/* 72 */ this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getShufflingInterval() {
|
||||
/* 80 */ return this.shufflingInterval;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setShufflingInterval(Integer shufflingInterval) {
|
||||
/* 88 */ this.shufflingInterval = shufflingInterval;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getAdvertisementId() {
|
||||
/* 96 */ return this.advertisementId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setAdvertisementId(String advertisementId) {
|
||||
this.advertisementId = advertisementId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getShowSwitch() {
|
||||
return this.showSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setShowSwitch(Integer showSwitch) {
|
||||
this.showSwitch = showSwitch;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class CompareModelResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -8486683753194585647L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Integer compareModel;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceType() {
|
||||
return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setCompareModel(Integer compareModel) {
|
||||
this.compareModel = compareModel;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getCompareModel() {
|
||||
return this.compareModel;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+82
@@ -0,0 +1,82 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ControllerQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -8415873401130917094L;
|
||||
private String deviceTypeId;
|
||||
private List<String> deviceCodes;
|
||||
private Set<String> deviceAttrCodes;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Set<String> getDeviceAttrCodes() {
|
||||
return this.deviceAttrCodes;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceAttrCodes(Set<String> deviceAttrCodes) {
|
||||
this.deviceAttrCodes = deviceAttrCodes;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceAttrModifyDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 9102395805528283894L;
|
||||
private String deviceId;
|
||||
private Map<String, String> attrs;
|
||||
private Long time;
|
||||
private String userId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Map<String, String> getAttrs() {
|
||||
return this.attrs;
|
||||
}
|
||||
|
||||
public void setAttrs(Map<String, String> attrs) {
|
||||
this.attrs = attrs;
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return this.time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+356
@@ -0,0 +1,356 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceBaseInfoResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -8299801483967188097L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private String softwareVersion;
|
||||
private Integer networkType;
|
||||
private String networkBlock;
|
||||
private String algorithmVersion;
|
||||
private String modelVersion;
|
||||
private String firmwareVersion;
|
||||
private String osVersion;
|
||||
private String mac;
|
||||
private String ip;
|
||||
private String subnetMask;
|
||||
private String dns;
|
||||
private String gateway;
|
||||
private String simBlock;
|
||||
private Map<String, String> deviceAttrs;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceType() {
|
||||
return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getSoftwareVersion() {
|
||||
return this.softwareVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSoftwareVersion(String softwareVersion) {
|
||||
this.softwareVersion = softwareVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getNetworkType() {
|
||||
return this.networkType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setNetworkType(Integer networkType) {
|
||||
this.networkType = networkType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getNetworkBlock() {
|
||||
return this.networkBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setNetworkBlock(String networkBlock) {
|
||||
this.networkBlock = networkBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getAlgorithmVersion() {
|
||||
return this.algorithmVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setAlgorithmVersion(String algorithmVersion) {
|
||||
this.algorithmVersion = algorithmVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getFirmwareVersion() {
|
||||
return this.firmwareVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setFirmwareVersion(String firmwareVersion) {
|
||||
this.firmwareVersion = firmwareVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getOsVersion() {
|
||||
return this.osVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setOsVersion(String osVersion) {
|
||||
this.osVersion = osVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getMac() {
|
||||
return this.mac;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getSubnetMask() {
|
||||
return this.subnetMask;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSubnetMask(String subnetMask) {
|
||||
this.subnetMask = subnetMask;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDns() {
|
||||
return this.dns;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDns(String dns) {
|
||||
this.dns = dns;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getGateway() {
|
||||
return this.gateway;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setGateway(String gateway) {
|
||||
this.gateway = gateway;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getSimBlock() {
|
||||
return this.simBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSimBlock(String simBlock) {
|
||||
this.simBlock = simBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Map<String, String> getDeviceAttrs() {
|
||||
return this.deviceAttrs;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceAttrs(Map<String, String> deviceAttrs) {
|
||||
this.deviceAttrs = deviceAttrs;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+251
@@ -0,0 +1,251 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import cn.cloudwalk.common.device.bean.device.dto.DeviceAttrEditDTO;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceInfoUploadDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1953910941391342686L;
|
||||
private String deviceId;
|
||||
private String deviceTypeId;
|
||||
private String appVersion;
|
||||
private String osVersion;
|
||||
private String firmwareVersion;
|
||||
private List<VersionDataDTO> versionData;
|
||||
private List<NetworkDataDTO> networkData;
|
||||
private String userId;
|
||||
private Long currentTime;
|
||||
private String deviceName;
|
||||
private List<DeviceAttrEditDTO> deviceAttrEditDTOS;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 79 */ return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 87 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 95 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setAppVersion(String appVersion) {
|
||||
this.appVersion = appVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getAppVersion() {
|
||||
return this.appVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getOsVersion() {
|
||||
return this.osVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setOsVersion(String osVersion) {
|
||||
this.osVersion = osVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getFirmwareVersion() {
|
||||
return this.firmwareVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setFirmwareVersion(String firmwareVersion) {
|
||||
this.firmwareVersion = firmwareVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public List<NetworkDataDTO> getNetworkData() {
|
||||
return this.networkData;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setNetworkData(List<NetworkDataDTO> networkData) {
|
||||
this.networkData = networkData;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public List<VersionDataDTO> getVersionData() {
|
||||
return this.versionData;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setVersionData(List<VersionDataDTO> versionData) {
|
||||
this.versionData = versionData;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Long getCurrentTime() {
|
||||
return this.currentTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setCurrentTime(Long currentTime) {
|
||||
this.currentTime = currentTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public List<DeviceAttrEditDTO> getDeviceAttrEditDTOS() {
|
||||
return this.deviceAttrEditDTOS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceAttrEditDTOS(List<DeviceAttrEditDTO> deviceAttrEditDTOS) {
|
||||
this.deviceAttrEditDTOS = deviceAttrEditDTOS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+95
@@ -0,0 +1,95 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceRecognitionResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 7766779808608180116L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Float thresholdOf1vN;
|
||||
private Float thresholdOf1v1;
|
||||
private Integer minFaceSize;
|
||||
private Float qualityScore;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceType() {
|
||||
return this.deviceType;
|
||||
}
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
public Float getThresholdOf1vN() {
|
||||
return this.thresholdOf1vN;
|
||||
}
|
||||
|
||||
public void setThresholdOf1vN(Float thresholdOf1vN) {
|
||||
this.thresholdOf1vN = thresholdOf1vN;
|
||||
}
|
||||
|
||||
public Float getThresholdOf1v1() {
|
||||
return this.thresholdOf1v1;
|
||||
}
|
||||
|
||||
public void setThresholdOf1v1(Float thresholdOf1v1) {
|
||||
this.thresholdOf1v1 = thresholdOf1v1;
|
||||
}
|
||||
|
||||
public Integer getMinFaceSize() {
|
||||
return this.minFaceSize;
|
||||
}
|
||||
|
||||
public void setMinFaceSize(Integer minFaceSize) {
|
||||
this.minFaceSize = minFaceSize;
|
||||
}
|
||||
|
||||
public Float getQualityScore() {
|
||||
return this.qualityScore;
|
||||
}
|
||||
|
||||
public void setQualityScore(Float qualityScore) {
|
||||
this.qualityScore = qualityScore;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+103
@@ -0,0 +1,103 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceRunningInfoResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 8201741287337759412L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Float cpuUsage;
|
||||
private Float memoryUsage;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceType() {
|
||||
return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Float getCpuUsage() {
|
||||
return this.cpuUsage;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setCpuUsage(Float cpuUsage) {
|
||||
this.cpuUsage = cpuUsage;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Float getMemoryUsage() {
|
||||
return this.memoryUsage;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setMemoryUsage(Float memoryUsage) {
|
||||
this.memoryUsage = memoryUsage;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class EntranceGuardResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1060407061132042647L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Integer openInterval;
|
||||
private Integer switchModel;
|
||||
|
||||
public Integer getOpenInterval() {
|
||||
return this.openInterval;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setOpenInterval(Integer openInterval) {
|
||||
this.openInterval = openInterval;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getSwitchModel() {
|
||||
return this.switchModel;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSwitchModel(Integer switchModel) {
|
||||
this.switchModel = switchModel;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceType() {
|
||||
return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+228
@@ -0,0 +1,228 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ExtendsResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5361189601157927490L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Integer panoramaSwitch;
|
||||
private Integer linkageVideoSwitch;
|
||||
private Integer linkageVideoAlarmInputSwitch;
|
||||
private Integer linkageVideoBitRate;
|
||||
private Integer preventAttacksSwitch;
|
||||
private Integer openLightThreshold;
|
||||
private Integer closeLightThreshold;
|
||||
private Integer subCameraSwitch;
|
||||
|
||||
public String getDeviceType() {
|
||||
/* 72 */ return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
/* 80 */ this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 88 */ return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 96 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getPanoramaSwitch() {
|
||||
return this.panoramaSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setPanoramaSwitch(Integer panoramaSwitch) {
|
||||
this.panoramaSwitch = panoramaSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getLinkageVideoSwitch() {
|
||||
return this.linkageVideoSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setLinkageVideoSwitch(Integer linkageVideoSwitch) {
|
||||
this.linkageVideoSwitch = linkageVideoSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getLinkageVideoAlarmInputSwitch() {
|
||||
return this.linkageVideoAlarmInputSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setLinkageVideoAlarmInputSwitch(Integer linkageVideoAlarmInputSwitch) {
|
||||
this.linkageVideoAlarmInputSwitch = linkageVideoAlarmInputSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getLinkageVideoBitRate() {
|
||||
return this.linkageVideoBitRate;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setLinkageVideoBitRate(Integer linkageVideoBitRate) {
|
||||
this.linkageVideoBitRate = linkageVideoBitRate;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getPreventAttacksSwitch() {
|
||||
return this.preventAttacksSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setPreventAttacksSwitch(Integer preventAttacksSwitch) {
|
||||
this.preventAttacksSwitch = preventAttacksSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getOpenLightThreshold() {
|
||||
return this.openLightThreshold;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setOpenLightThreshold(Integer openLightThreshold) {
|
||||
this.openLightThreshold = openLightThreshold;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getCloseLightThreshold() {
|
||||
return this.closeLightThreshold;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setCloseLightThreshold(Integer closeLightThreshold) {
|
||||
this.closeLightThreshold = closeLightThreshold;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getSubCameraSwitch() {
|
||||
return this.subCameraSwitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSubCameraSwitch(Integer subCameraSwitch) {
|
||||
this.subCameraSwitch = subCameraSwitch;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+185
@@ -0,0 +1,185 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class NetworkDataDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -4270873297380849893L;
|
||||
private Integer networkType;
|
||||
private String networkBlock;
|
||||
private String mac;
|
||||
private String ip;
|
||||
private String subnetMask;
|
||||
private String gateway;
|
||||
private String dns;
|
||||
private String simBlock;
|
||||
|
||||
public Integer getNetworkType() {
|
||||
/* 61 */ return this.networkType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setNetworkType(Integer networkType) {
|
||||
/* 69 */ this.networkType = networkType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getNetworkBlock() {
|
||||
/* 77 */ return this.networkBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setNetworkBlock(String networkBlock) {
|
||||
/* 85 */ this.networkBlock = networkBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getMac() {
|
||||
/* 93 */ return this.mac;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getSubnetMask() {
|
||||
return this.subnetMask;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSubnetMask(String subnetMask) {
|
||||
this.subnetMask = subnetMask;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getGateway() {
|
||||
return this.gateway;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setGateway(String gateway) {
|
||||
this.gateway = gateway;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDns() {
|
||||
return this.dns;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDns(String dns) {
|
||||
this.dns = dns;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getSimBlock() {
|
||||
return this.simBlock;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSimBlock(String simBlock) {
|
||||
this.simBlock = simBlock;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class OceanDeviceUpgradeConfigDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -6748187171256969226L;
|
||||
private String deviceTypeId;
|
||||
private String timeLimit;
|
||||
private Integer netLimit;
|
||||
private String remark;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getTimeLimit() {
|
||||
return this.timeLimit;
|
||||
}
|
||||
|
||||
public void setTimeLimit(String timeLimit) {
|
||||
this.timeLimit = timeLimit;
|
||||
}
|
||||
|
||||
public Integer getNetLimit() {
|
||||
return this.netLimit;
|
||||
}
|
||||
|
||||
public void setNetLimit(Integer netLimit) {
|
||||
this.netLimit = netLimit;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+122
@@ -0,0 +1,122 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class OceanDeviceUpgradeDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6936377827931036302L;
|
||||
private List<String> deviceIds;
|
||||
private String version;
|
||||
private String downloadUrl;
|
||||
private Integer updateType;
|
||||
private Long packageSize;
|
||||
private String userId;
|
||||
private Long createTime;
|
||||
private String remark;
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
/* 58 */ return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
/* 62 */ this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
/* 66 */ return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
/* 70 */ this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
/* 74 */ return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
/* 78 */ this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getPackageSize() {
|
||||
/* 82 */ return this.packageSize;
|
||||
}
|
||||
|
||||
public void setPackageSize(Long packageSize) {
|
||||
/* 86 */ this.packageSize = packageSize;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
/* 90 */ return this.version;
|
||||
}
|
||||
|
||||
public void setVersion(String version) {
|
||||
/* 94 */ this.version = version;
|
||||
}
|
||||
|
||||
public Integer getUpdateType() {
|
||||
/* 98 */ return this.updateType;
|
||||
}
|
||||
|
||||
public void setUpdateType(Integer updateType) {
|
||||
this.updateType = updateType;
|
||||
}
|
||||
|
||||
public String getDownloadUrl() {
|
||||
return this.downloadUrl;
|
||||
}
|
||||
|
||||
public void setDownloadUrl(String downloadUrl) {
|
||||
this.downloadUrl = downloadUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class OceanDeviceUpgradeLogDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 7512308779995784680L;
|
||||
private String deviceId;
|
||||
private String deviceTypeId;
|
||||
private Long downloadBeginTime;
|
||||
private Long upgradeFinishTime;
|
||||
private Integer versionType;
|
||||
private String version;
|
||||
private Integer packageSize;
|
||||
private String upgradeCode;
|
||||
private String upgradeMessage;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 64 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 68 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 72 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 76 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
/* 80 */ return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
/* 84 */ this.versionType = versionType;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
/* 88 */ return this.version;
|
||||
}
|
||||
|
||||
public void setVersion(String version) {
|
||||
/* 92 */ this.version = version;
|
||||
}
|
||||
|
||||
public String getUpgradeCode() {
|
||||
/* 96 */ return this.upgradeCode;
|
||||
}
|
||||
|
||||
public void setUpgradeCode(String upgradeCode) {
|
||||
this.upgradeCode = upgradeCode;
|
||||
}
|
||||
|
||||
public String getUpgradeMessage() {
|
||||
return this.upgradeMessage;
|
||||
}
|
||||
|
||||
public void setUpgradeMessage(String upgradeMessage) {
|
||||
this.upgradeMessage = upgradeMessage;
|
||||
}
|
||||
|
||||
public Long getDownloadBeginTime() {
|
||||
return this.downloadBeginTime;
|
||||
}
|
||||
|
||||
public void setDownloadBeginTime(Long downloadBeginTime) {
|
||||
this.downloadBeginTime = downloadBeginTime;
|
||||
}
|
||||
|
||||
public Long getUpgradeFinishTime() {
|
||||
return this.upgradeFinishTime;
|
||||
}
|
||||
|
||||
public void setUpgradeFinishTime(Long upgradeFinishTime) {
|
||||
this.upgradeFinishTime = upgradeFinishTime;
|
||||
}
|
||||
|
||||
public Integer getPackageSize() {
|
||||
return this.packageSize;
|
||||
}
|
||||
|
||||
public void setPackageSize(Integer packageSize) {
|
||||
this.packageSize = packageSize;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+80
@@ -0,0 +1,80 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class VersionDataDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -3852513152113413905L;
|
||||
private Integer modelType;
|
||||
private Integer modelIndex;
|
||||
private String modelVersion;
|
||||
|
||||
public Integer getModelType() {
|
||||
return this.modelType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setModelType(Integer modelType) {
|
||||
this.modelType = modelType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getModelIndex() {
|
||||
return this.modelIndex;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setModelIndex(Integer modelIndex) {
|
||||
this.modelIndex = modelIndex;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+148
@@ -0,0 +1,148 @@
|
||||
package cn.cloudwalk.common.device.bean.ocean.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class VolumeResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 158957093802465975L;
|
||||
private String deviceId;
|
||||
private String deviceType;
|
||||
private Integer volume;
|
||||
private Integer successSound;
|
||||
private Integer failSound;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 56 */ return this.deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 64 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public String getDeviceType() {
|
||||
/* 72 */ return this.deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
/* 80 */ this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getVolume() {
|
||||
/* 88 */ return this.volume;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setVolume(Integer volume) {
|
||||
/* 96 */ this.volume = volume;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getSuccessSound() {
|
||||
return this.successSound;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setSuccessSound(Integer successSound) {
|
||||
this.successSound = successSound;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public Integer getFailSound() {
|
||||
return this.failSound;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setFailSound(Integer failSound) {
|
||||
this.failSound = failSound;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeConfDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -4416544335014356686L;
|
||||
private List<String> ids;
|
||||
private String deviceTypeId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+124
@@ -0,0 +1,124 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeConfEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7296766479957095662L;
|
||||
private String deviceTypeId;
|
||||
private String timeLimit;
|
||||
private Integer netLimit;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private String name;
|
||||
private Long endTime;
|
||||
private String upgradeId;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 60 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 64 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getTimeLimit() {
|
||||
/* 68 */ return this.timeLimit;
|
||||
}
|
||||
|
||||
public void setTimeLimit(String timeLimit) {
|
||||
/* 72 */ this.timeLimit = timeLimit;
|
||||
}
|
||||
|
||||
public Integer getNetLimit() {
|
||||
/* 76 */ return this.netLimit;
|
||||
}
|
||||
|
||||
public void setNetLimit(Integer netLimit) {
|
||||
/* 80 */ this.netLimit = netLimit;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
/* 84 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
/* 88 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 92 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
/* 96 */ this.remark = remark;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String getUpgradeId() {
|
||||
return this.upgradeId;
|
||||
}
|
||||
|
||||
public void setUpgradeId(String upgradeId) {
|
||||
this.upgradeId = upgradeId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeConfGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -3489874771160642749L;
|
||||
private String deviceTypeId;
|
||||
private String upgradeId;
|
||||
private List<String> ids;
|
||||
|
||||
public DeviceUpgradeConfGetsDTO() {}
|
||||
|
||||
public DeviceUpgradeConfGetsDTO(String deviceTypeId) {
|
||||
setDeviceTypeId(deviceTypeId);
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getUpgradeId() {
|
||||
return this.upgradeId;
|
||||
}
|
||||
|
||||
public void setUpgradeId(String upgradeId) {
|
||||
this.upgradeId = upgradeId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBasePeriod;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeConfQueryDTO
|
||||
extends CloudwalkBasePeriod
|
||||
{
|
||||
private static final long serialVersionUID = 267511602868594511L;
|
||||
private Integer status;
|
||||
private String deviceTypeId;
|
||||
private String name;
|
||||
private Long endTime;
|
||||
private String upgradeId;
|
||||
private String remark;
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String getUpgradeId() {
|
||||
return this.upgradeId;
|
||||
}
|
||||
|
||||
public void setUpgradeId(String upgradeId) {
|
||||
this.upgradeId = upgradeId;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+126
@@ -0,0 +1,126 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeConfResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -5754263044764274801L;
|
||||
private String deviceTypeId;
|
||||
private String timeLimit;
|
||||
private Integer netLimit;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private String name;
|
||||
private Long endTime;
|
||||
private String upgradeId;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 58 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 62 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getTimeLimit() {
|
||||
/* 66 */ return this.timeLimit;
|
||||
}
|
||||
|
||||
public void setTimeLimit(String timeLimit) {
|
||||
/* 70 */ this.timeLimit = timeLimit;
|
||||
}
|
||||
|
||||
public Integer getNetLimit() {
|
||||
/* 74 */ return this.netLimit;
|
||||
}
|
||||
|
||||
public void setNetLimit(Integer netLimit) {
|
||||
/* 78 */ this.netLimit = netLimit;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
/* 82 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
/* 86 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 90 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
/* 94 */ this.remark = remark;
|
||||
}
|
||||
|
||||
public static long getSerialVersionUID() {
|
||||
/* 98 */ return -5754263044764274801L;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String getUpgradeId() {
|
||||
return this.upgradeId;
|
||||
}
|
||||
|
||||
public void setUpgradeId(String upgradeId) {
|
||||
this.upgradeId = upgradeId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 2398216105610822383L;
|
||||
private List<String> ids;
|
||||
private String currentVersion;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getCurrentVersion() {
|
||||
return this.currentVersion;
|
||||
}
|
||||
|
||||
public void setCurrentVersion(String currentVersion) {
|
||||
this.currentVersion = currentVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+226
@@ -0,0 +1,226 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -1177727479066760378L;
|
||||
private String deviceTypeId;
|
||||
private String previousVersion;
|
||||
private String currentVersion;
|
||||
private Integer versionType;
|
||||
private Integer upgradeType;
|
||||
private String fullPkgUrl;
|
||||
private Integer fullPkgLength;
|
||||
private String fullPkgMd5;
|
||||
private String appendPkgUrl;
|
||||
private Integer appendPkgLength;
|
||||
private String appendPkgMd5;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private String name;
|
||||
private Integer packageType;
|
||||
private String modelVersion;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 98 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getPreviousVersion() {
|
||||
return this.previousVersion;
|
||||
}
|
||||
|
||||
public void setPreviousVersion(String previousVersion) {
|
||||
this.previousVersion = previousVersion;
|
||||
}
|
||||
|
||||
public String getCurrentVersion() {
|
||||
return this.currentVersion;
|
||||
}
|
||||
|
||||
public void setCurrentVersion(String currentVersion) {
|
||||
this.currentVersion = currentVersion;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
this.versionType = versionType;
|
||||
}
|
||||
|
||||
public Integer getUpgradeType() {
|
||||
return this.upgradeType;
|
||||
}
|
||||
|
||||
public void setUpgradeType(Integer upgradeType) {
|
||||
this.upgradeType = upgradeType;
|
||||
}
|
||||
|
||||
public String getFullPkgUrl() {
|
||||
return this.fullPkgUrl;
|
||||
}
|
||||
|
||||
public void setFullPkgUrl(String fullPkgUrl) {
|
||||
this.fullPkgUrl = fullPkgUrl;
|
||||
}
|
||||
|
||||
public Integer getFullPkgLength() {
|
||||
return this.fullPkgLength;
|
||||
}
|
||||
|
||||
public void setFullPkgLength(Integer fullPkgLength) {
|
||||
this.fullPkgLength = fullPkgLength;
|
||||
}
|
||||
|
||||
public String getFullPkgMd5() {
|
||||
return this.fullPkgMd5;
|
||||
}
|
||||
|
||||
public void setFullPkgMd5(String fullPkgMd5) {
|
||||
this.fullPkgMd5 = fullPkgMd5;
|
||||
}
|
||||
|
||||
public String getAppendPkgUrl() {
|
||||
return this.appendPkgUrl;
|
||||
}
|
||||
|
||||
public void setAppendPkgUrl(String appendPkgUrl) {
|
||||
this.appendPkgUrl = appendPkgUrl;
|
||||
}
|
||||
|
||||
public Integer getAppendPkgLength() {
|
||||
return this.appendPkgLength;
|
||||
}
|
||||
|
||||
public void setAppendPkgLength(Integer appendPkgLength) {
|
||||
this.appendPkgLength = appendPkgLength;
|
||||
}
|
||||
|
||||
public String getAppendPkgMd5() {
|
||||
return this.appendPkgMd5;
|
||||
}
|
||||
|
||||
public void setAppendPkgMd5(String appendPkgMd5) {
|
||||
this.appendPkgMd5 = appendPkgMd5;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+124
@@ -0,0 +1,124 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6995233328095151965L;
|
||||
private List<String> ids;
|
||||
private String deviceTypeId;
|
||||
private String currentVersion;
|
||||
private String previousVersion;
|
||||
private String name;
|
||||
private Integer packageType;
|
||||
private String modelVersion;
|
||||
|
||||
public DeviceUpgradeGetsDTO() {}
|
||||
|
||||
public DeviceUpgradeGetsDTO(String currentVersion) {
|
||||
/* 64 */ this.currentVersion = currentVersion;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
/* 68 */ return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
/* 72 */ this.ids = ids;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 76 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 80 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getCurrentVersion() {
|
||||
/* 84 */ return this.currentVersion;
|
||||
}
|
||||
|
||||
public void setCurrentVersion(String currentVersion) {
|
||||
/* 88 */ this.currentVersion = currentVersion;
|
||||
}
|
||||
|
||||
public String getPreviousVersion() {
|
||||
/* 92 */ return this.previousVersion;
|
||||
}
|
||||
|
||||
public void setPreviousVersion(String previousVersion) {
|
||||
/* 96 */ this.previousVersion = previousVersion;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+135
@@ -0,0 +1,135 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeQueryDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2183893960573881657L;
|
||||
private String deviceTypeId;
|
||||
private String previousVersion;
|
||||
private String currentVersion;
|
||||
private Integer versionType;
|
||||
private Integer upgradeType;
|
||||
private Integer status;
|
||||
private String name;
|
||||
private Integer packageType;
|
||||
private String modelVersion;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 63 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 67 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getPreviousVersion() {
|
||||
/* 71 */ return this.previousVersion;
|
||||
}
|
||||
|
||||
public void setPreviousVersion(String previousVersion) {
|
||||
/* 75 */ this.previousVersion = previousVersion;
|
||||
}
|
||||
|
||||
public String getCurrentVersion() {
|
||||
/* 79 */ return this.currentVersion;
|
||||
}
|
||||
|
||||
public void setCurrentVersion(String currentVersion) {
|
||||
/* 83 */ this.currentVersion = currentVersion;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
/* 87 */ return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
/* 91 */ this.versionType = versionType;
|
||||
}
|
||||
|
||||
public Integer getUpgradeType() {
|
||||
/* 95 */ return this.upgradeType;
|
||||
}
|
||||
|
||||
public void setUpgradeType(Integer upgradeType) {
|
||||
/* 99 */ this.upgradeType = upgradeType;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+226
@@ -0,0 +1,226 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -1145134295579715029L;
|
||||
private String deviceTypeId;
|
||||
private String previousVersion;
|
||||
private String currentVersion;
|
||||
private Integer versionType;
|
||||
private Integer upgradeType;
|
||||
private String fullPkgUrl;
|
||||
private Integer fullPkgLength;
|
||||
private String fullPkgMd5;
|
||||
private String appendPkgUrl;
|
||||
private Integer appendPkgLength;
|
||||
private String appendPkgMd5;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private String name;
|
||||
private Integer packageType;
|
||||
private String modelVersion;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 98 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getPreviousVersion() {
|
||||
return this.previousVersion;
|
||||
}
|
||||
|
||||
public void setPreviousVersion(String previousVersion) {
|
||||
this.previousVersion = previousVersion;
|
||||
}
|
||||
|
||||
public String getCurrentVersion() {
|
||||
return this.currentVersion;
|
||||
}
|
||||
|
||||
public void setCurrentVersion(String currentVersion) {
|
||||
this.currentVersion = currentVersion;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
this.versionType = versionType;
|
||||
}
|
||||
|
||||
public Integer getUpgradeType() {
|
||||
return this.upgradeType;
|
||||
}
|
||||
|
||||
public void setUpgradeType(Integer upgradeType) {
|
||||
this.upgradeType = upgradeType;
|
||||
}
|
||||
|
||||
public String getFullPkgUrl() {
|
||||
return this.fullPkgUrl;
|
||||
}
|
||||
|
||||
public void setFullPkgUrl(String fullPkgUrl) {
|
||||
this.fullPkgUrl = fullPkgUrl;
|
||||
}
|
||||
|
||||
public Integer getFullPkgLength() {
|
||||
return this.fullPkgLength;
|
||||
}
|
||||
|
||||
public void setFullPkgLength(Integer fullPkgLength) {
|
||||
this.fullPkgLength = fullPkgLength;
|
||||
}
|
||||
|
||||
public String getFullPkgMd5() {
|
||||
return this.fullPkgMd5;
|
||||
}
|
||||
|
||||
public void setFullPkgMd5(String fullPkgMd5) {
|
||||
this.fullPkgMd5 = fullPkgMd5;
|
||||
}
|
||||
|
||||
public String getAppendPkgUrl() {
|
||||
return this.appendPkgUrl;
|
||||
}
|
||||
|
||||
public void setAppendPkgUrl(String appendPkgUrl) {
|
||||
this.appendPkgUrl = appendPkgUrl;
|
||||
}
|
||||
|
||||
public Integer getAppendPkgLength() {
|
||||
return this.appendPkgLength;
|
||||
}
|
||||
|
||||
public void setAppendPkgLength(Integer appendPkgLength) {
|
||||
this.appendPkgLength = appendPkgLength;
|
||||
}
|
||||
|
||||
public String getAppendPkgMd5() {
|
||||
return this.appendPkgMd5;
|
||||
}
|
||||
|
||||
public void setAppendPkgMd5(String appendPkgMd5) {
|
||||
this.appendPkgMd5 = appendPkgMd5;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeRevertDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4619505782651590689L;
|
||||
private List<String> ids;
|
||||
private String deviceTypeId;
|
||||
private Integer packageType;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String upgradeConfId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getUpgradeConfId() {
|
||||
return this.upgradeConfId;
|
||||
}
|
||||
|
||||
public void setUpgradeConfId(String upgradeConfId) {
|
||||
this.upgradeConfId = upgradeConfId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+187
@@ -0,0 +1,187 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeRevertEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -8346334547356331042L;
|
||||
private String deviceId;
|
||||
private String deviceTypeId;
|
||||
private String deviceCode;
|
||||
private Integer packageType;
|
||||
private Long dowloadBeginTime;
|
||||
private Long upgradeFinishTime;
|
||||
private Integer versionType;
|
||||
private String currVersion;
|
||||
private String prevVersion;
|
||||
private String upgradeCode;
|
||||
private String upgradeMessage;
|
||||
private String upgradeConfId;
|
||||
private Integer status;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 83 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 87 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 91 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 95 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 99 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public Long getDowloadBeginTime() {
|
||||
return this.dowloadBeginTime;
|
||||
}
|
||||
|
||||
public void setDowloadBeginTime(Long dowloadBeginTime) {
|
||||
this.dowloadBeginTime = dowloadBeginTime;
|
||||
}
|
||||
|
||||
public Long getUpgradeFinishTime() {
|
||||
return this.upgradeFinishTime;
|
||||
}
|
||||
|
||||
public void setUpgradeFinishTime(Long upgradeFinishTime) {
|
||||
this.upgradeFinishTime = upgradeFinishTime;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
this.versionType = versionType;
|
||||
}
|
||||
|
||||
public String getCurrVersion() {
|
||||
return this.currVersion;
|
||||
}
|
||||
|
||||
public void setCurrVersion(String currVersion) {
|
||||
this.currVersion = currVersion;
|
||||
}
|
||||
|
||||
public String getPrevVersion() {
|
||||
return this.prevVersion;
|
||||
}
|
||||
|
||||
public void setPrevVersion(String prevVersion) {
|
||||
this.prevVersion = prevVersion;
|
||||
}
|
||||
|
||||
public String getUpgradeCode() {
|
||||
return this.upgradeCode;
|
||||
}
|
||||
|
||||
public void setUpgradeCode(String upgradeCode) {
|
||||
this.upgradeCode = upgradeCode;
|
||||
}
|
||||
|
||||
public String getUpgradeMessage() {
|
||||
return this.upgradeMessage;
|
||||
}
|
||||
|
||||
public void setUpgradeMessage(String upgradeMessage) {
|
||||
this.upgradeMessage = upgradeMessage;
|
||||
}
|
||||
|
||||
public String getUpgradeConfId() {
|
||||
return this.upgradeConfId;
|
||||
}
|
||||
|
||||
public void setUpgradeConfId(String upgradeConfId) {
|
||||
this.upgradeConfId = upgradeConfId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+121
@@ -0,0 +1,121 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeRevertGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7284894053289050460L;
|
||||
private List<String> ids;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer packageType;
|
||||
private String deviceTypeId;
|
||||
private String upgradeConfId;
|
||||
private Integer status;
|
||||
private String prevVersion;
|
||||
|
||||
public List<String> getIds() {
|
||||
/* 57 */ return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
/* 61 */ this.ids = ids;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 65 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 69 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 73 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 77 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
/* 81 */ return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
/* 85 */ this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 89 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 93 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getUpgradeConfId() {
|
||||
/* 97 */ return this.upgradeConfId;
|
||||
}
|
||||
|
||||
public void setUpgradeConfId(String upgradeConfId) {
|
||||
this.upgradeConfId = upgradeConfId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getPrevVersion() {
|
||||
return this.prevVersion;
|
||||
}
|
||||
|
||||
public void setPrevVersion(String prevVersion) {
|
||||
this.prevVersion = prevVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+158
@@ -0,0 +1,158 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeRevertQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1608782363317388371L;
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private Integer packageType;
|
||||
private String deviceTypeId;
|
||||
private String deviceCode;
|
||||
private String upgradeCode;
|
||||
private Integer versionType;
|
||||
private String currVersion;
|
||||
private String upgradeConfId;
|
||||
private Integer status;
|
||||
private String prevVersion;
|
||||
|
||||
public String getId() {
|
||||
/* 70 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 74 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 78 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 82 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
/* 86 */ return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
/* 90 */ this.packageType = packageType;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 94 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 98 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getUpgradeCode() {
|
||||
return this.upgradeCode;
|
||||
}
|
||||
|
||||
public void setUpgradeCode(String upgradeCode) {
|
||||
this.upgradeCode = upgradeCode;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
this.versionType = versionType;
|
||||
}
|
||||
|
||||
public String getCurrVersion() {
|
||||
return this.currVersion;
|
||||
}
|
||||
|
||||
public void setCurrVersion(String currVersion) {
|
||||
this.currVersion = currVersion;
|
||||
}
|
||||
|
||||
public String getUpgradeConfId() {
|
||||
return this.upgradeConfId;
|
||||
}
|
||||
|
||||
public void setUpgradeConfId(String upgradeConfId) {
|
||||
this.upgradeConfId = upgradeConfId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getPrevVersion() {
|
||||
return this.prevVersion;
|
||||
}
|
||||
|
||||
public void setPrevVersion(String prevVersion) {
|
||||
this.prevVersion = prevVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+186
@@ -0,0 +1,186 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceUpgradeRevertResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -3189452525168693376L;
|
||||
private String deviceId;
|
||||
private String deviceTypeId;
|
||||
private String deviceCode;
|
||||
private Integer packageType;
|
||||
private Long dowloadBeginTime;
|
||||
private Long upgradeFinishTime;
|
||||
private Integer versionType;
|
||||
private String currVersion;
|
||||
private String prevVersion;
|
||||
private String upgradeCode;
|
||||
private String upgradeMessage;
|
||||
private String upgradeConfId;
|
||||
private Integer status;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 82 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 86 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
/* 90 */ return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 94 */ this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 98 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getPackageType() {
|
||||
return this.packageType;
|
||||
}
|
||||
|
||||
public void setPackageType(Integer packageType) {
|
||||
this.packageType = packageType;
|
||||
}
|
||||
|
||||
public Long getDowloadBeginTime() {
|
||||
return this.dowloadBeginTime;
|
||||
}
|
||||
|
||||
public void setDowloadBeginTime(Long dowloadBeginTime) {
|
||||
this.dowloadBeginTime = dowloadBeginTime;
|
||||
}
|
||||
|
||||
public Long getUpgradeFinishTime() {
|
||||
return this.upgradeFinishTime;
|
||||
}
|
||||
|
||||
public void setUpgradeFinishTime(Long upgradeFinishTime) {
|
||||
this.upgradeFinishTime = upgradeFinishTime;
|
||||
}
|
||||
|
||||
public Integer getVersionType() {
|
||||
return this.versionType;
|
||||
}
|
||||
|
||||
public void setVersionType(Integer versionType) {
|
||||
this.versionType = versionType;
|
||||
}
|
||||
|
||||
public String getCurrVersion() {
|
||||
return this.currVersion;
|
||||
}
|
||||
|
||||
public void setCurrVersion(String currVersion) {
|
||||
this.currVersion = currVersion;
|
||||
}
|
||||
|
||||
public String getPrevVersion() {
|
||||
return this.prevVersion;
|
||||
}
|
||||
|
||||
public void setPrevVersion(String prevVersion) {
|
||||
this.prevVersion = prevVersion;
|
||||
}
|
||||
|
||||
public String getUpgradeCode() {
|
||||
return this.upgradeCode;
|
||||
}
|
||||
|
||||
public void setUpgradeCode(String upgradeCode) {
|
||||
this.upgradeCode = upgradeCode;
|
||||
}
|
||||
|
||||
public String getUpgradeMessage() {
|
||||
return this.upgradeMessage;
|
||||
}
|
||||
|
||||
public void setUpgradeMessage(String upgradeMessage) {
|
||||
this.upgradeMessage = upgradeMessage;
|
||||
}
|
||||
|
||||
public String getUpgradeConfId() {
|
||||
return this.upgradeConfId;
|
||||
}
|
||||
|
||||
public void setUpgradeConfId(String upgradeConfId) {
|
||||
this.upgradeConfId = upgradeConfId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.common.device.bean.pkg.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class EdgeUpgradeQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -688166171103870549L;
|
||||
private String deviceTypeId;
|
||||
private String previousVersion;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getPreviousVersion() {
|
||||
return this.previousVersion;
|
||||
}
|
||||
|
||||
public void setPreviousVersion(String previousVersion) {
|
||||
this.previousVersion = previousVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
package cn.cloudwalk.common.device.bean.position.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicePositionDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -2693850275949011303L;
|
||||
private String logId;
|
||||
private String deviceCode;
|
||||
private Long lastPositionTime;
|
||||
private String latitude;
|
||||
private String longitude;
|
||||
private String altitude;
|
||||
|
||||
public String getLogId() {
|
||||
return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Long getLastPositionTime() {
|
||||
return this.lastPositionTime;
|
||||
}
|
||||
|
||||
public void setLastPositionTime(Long lastPositionTime) {
|
||||
this.lastPositionTime = lastPositionTime;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return this.latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return this.longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public String getAltitude() {
|
||||
return this.altitude;
|
||||
}
|
||||
|
||||
public void setAltitude(String altitude) {
|
||||
this.altitude = altitude;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.common.device.bean.power.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicePowerDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 8278056756315506629L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+83
@@ -0,0 +1,83 @@
|
||||
package cn.cloudwalk.common.device.bean.power.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicePowerEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -9161906023187076913L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer restartFlag;
|
||||
private Long restartTime;
|
||||
private String reserveInfo;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getRestartFlag() {
|
||||
return this.restartFlag;
|
||||
}
|
||||
|
||||
public void setRestartFlag(Integer restartFlag) {
|
||||
this.restartFlag = restartFlag;
|
||||
}
|
||||
|
||||
public Long getRestartTime() {
|
||||
return this.restartTime;
|
||||
}
|
||||
|
||||
public void setRestartTime(Long restartTime) {
|
||||
this.restartTime = restartTime;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.common.device.bean.power.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicePowerGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 5242382030233665743L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.common.device.bean.power.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBasePeriod;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicePowerQueryDTO
|
||||
extends CloudwalkBasePeriod
|
||||
{
|
||||
private static final long serialVersionUID = -8246826216959001790L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+83
@@ -0,0 +1,83 @@
|
||||
package cn.cloudwalk.common.device.bean.power.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DevicePowerResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -4924946521614510024L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer restartFlag;
|
||||
private Long restartTime;
|
||||
private String reserveInfo;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getRestartFlag() {
|
||||
return this.restartFlag;
|
||||
}
|
||||
|
||||
public void setRestartFlag(Integer restartFlag) {
|
||||
this.restartFlag = restartFlag;
|
||||
}
|
||||
|
||||
public Long getRestartTime() {
|
||||
return this.restartTime;
|
||||
}
|
||||
|
||||
public void setRestartTime(Long restartTime) {
|
||||
this.restartTime = restartTime;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.common.device.bean.power.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceRestartQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4984624529248357086L;
|
||||
private String deviceCode;
|
||||
private Long restartTime;
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Long getRestartTime() {
|
||||
return this.restartTime;
|
||||
}
|
||||
|
||||
public void setRestartTime(Long restartTime) {
|
||||
this.restartTime = restartTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceNetworkDeltDTO
|
||||
extends DeviceSdkBasicDTO
|
||||
{
|
||||
private static final long serialVersionUID = 5100353341284761963L;
|
||||
|
||||
public DeviceNetworkDeltDTO() {}
|
||||
|
||||
public DeviceNetworkDeltDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+148
@@ -0,0 +1,148 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceNetworkEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2915158166073041367L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer networkType;
|
||||
private String networkBlock;
|
||||
private String mac;
|
||||
private String ip;
|
||||
private String subnetMask;
|
||||
private String gateWay;
|
||||
private String dns;
|
||||
private String simBlock;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 68 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 72 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 76 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 80 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getNetworkType() {
|
||||
/* 84 */ return this.networkType;
|
||||
}
|
||||
|
||||
public void setNetworkType(Integer networkType) {
|
||||
/* 88 */ this.networkType = networkType;
|
||||
}
|
||||
|
||||
public String getNetworkBlock() {
|
||||
/* 92 */ return this.networkBlock;
|
||||
}
|
||||
|
||||
public void setNetworkBlock(String networkBlock) {
|
||||
/* 96 */ this.networkBlock = networkBlock;
|
||||
}
|
||||
|
||||
public String getMac() {
|
||||
return this.mac;
|
||||
}
|
||||
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
public String getSubnetMask() {
|
||||
return this.subnetMask;
|
||||
}
|
||||
|
||||
public void setSubnetMask(String subnetMask) {
|
||||
this.subnetMask = subnetMask;
|
||||
}
|
||||
|
||||
public String getGateWay() {
|
||||
return this.gateWay;
|
||||
}
|
||||
|
||||
public void setGateWay(String gateWay) {
|
||||
this.gateWay = gateWay;
|
||||
}
|
||||
|
||||
public String getDns() {
|
||||
return this.dns;
|
||||
}
|
||||
|
||||
public void setDns(String dns) {
|
||||
this.dns = dns;
|
||||
}
|
||||
|
||||
public String getSimBlock() {
|
||||
return this.simBlock;
|
||||
}
|
||||
|
||||
public void setSimBlock(String simBlock) {
|
||||
this.simBlock = simBlock;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceNetworkGetsDTO
|
||||
extends DeviceSdkBasicDTO
|
||||
{
|
||||
private static final long serialVersionUID = 1154890131874450944L;
|
||||
|
||||
public DeviceNetworkGetsDTO() {}
|
||||
|
||||
public DeviceNetworkGetsDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+148
@@ -0,0 +1,148 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceNetworkQueryDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 3144419680596929711L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer networkType;
|
||||
private String networkBlock;
|
||||
private String mac;
|
||||
private String ip;
|
||||
private String subnetMask;
|
||||
private String gateWay;
|
||||
private String dns;
|
||||
private String simBlock;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 68 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 72 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 76 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 80 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getNetworkType() {
|
||||
/* 84 */ return this.networkType;
|
||||
}
|
||||
|
||||
public void setNetworkType(Integer networkType) {
|
||||
/* 88 */ this.networkType = networkType;
|
||||
}
|
||||
|
||||
public String getNetworkBlock() {
|
||||
/* 92 */ return this.networkBlock;
|
||||
}
|
||||
|
||||
public void setNetworkBlock(String networkBlock) {
|
||||
/* 96 */ this.networkBlock = networkBlock;
|
||||
}
|
||||
|
||||
public String getMac() {
|
||||
return this.mac;
|
||||
}
|
||||
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
public String getSubnetMask() {
|
||||
return this.subnetMask;
|
||||
}
|
||||
|
||||
public void setSubnetMask(String subnetMask) {
|
||||
this.subnetMask = subnetMask;
|
||||
}
|
||||
|
||||
public String getGateWay() {
|
||||
return this.gateWay;
|
||||
}
|
||||
|
||||
public void setGateWay(String gateWay) {
|
||||
this.gateWay = gateWay;
|
||||
}
|
||||
|
||||
public String getDns() {
|
||||
return this.dns;
|
||||
}
|
||||
|
||||
public void setDns(String dns) {
|
||||
this.dns = dns;
|
||||
}
|
||||
|
||||
public String getSimBlock() {
|
||||
return this.simBlock;
|
||||
}
|
||||
|
||||
public void setSimBlock(String simBlock) {
|
||||
this.simBlock = simBlock;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+148
@@ -0,0 +1,148 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceNetworkResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7604034853824926511L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer networkType;
|
||||
private String networkBlock;
|
||||
private String mac;
|
||||
private String ip;
|
||||
private String subnetMask;
|
||||
private String gateWay;
|
||||
private String dns;
|
||||
private String simBlock;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 68 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 72 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 76 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 80 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getNetworkType() {
|
||||
/* 84 */ return this.networkType;
|
||||
}
|
||||
|
||||
public void setNetworkType(Integer networkType) {
|
||||
/* 88 */ this.networkType = networkType;
|
||||
}
|
||||
|
||||
public String getNetworkBlock() {
|
||||
/* 92 */ return this.networkBlock;
|
||||
}
|
||||
|
||||
public void setNetworkBlock(String networkBlock) {
|
||||
/* 96 */ this.networkBlock = networkBlock;
|
||||
}
|
||||
|
||||
public String getMac() {
|
||||
return this.mac;
|
||||
}
|
||||
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
public String getSubnetMask() {
|
||||
return this.subnetMask;
|
||||
}
|
||||
|
||||
public void setSubnetMask(String subnetMask) {
|
||||
this.subnetMask = subnetMask;
|
||||
}
|
||||
|
||||
public String getGateWay() {
|
||||
return this.gateWay;
|
||||
}
|
||||
|
||||
public void setGateWay(String gateWay) {
|
||||
this.gateWay = gateWay;
|
||||
}
|
||||
|
||||
public String getDns() {
|
||||
return this.dns;
|
||||
}
|
||||
|
||||
public void setDns(String dns) {
|
||||
this.dns = dns;
|
||||
}
|
||||
|
||||
public String getSimBlock() {
|
||||
return this.simBlock;
|
||||
}
|
||||
|
||||
public void setSimBlock(String simBlock) {
|
||||
this.simBlock = simBlock;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceSdkBasicDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6120952553681368638L;
|
||||
private List<String> deviceCodes;
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCodes = new ArrayList<>();
|
||||
this.deviceCodes.add(deviceCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceSdkmodeDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7019010548837351367L;
|
||||
private List<String> deviceCodes;
|
||||
|
||||
public DeviceSdkmodeDeltDTO() {}
|
||||
|
||||
public DeviceSdkmodeDeltDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCodes = new ArrayList<>();
|
||||
this.deviceCodes.add(deviceCode);
|
||||
}
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceSdkmodeEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7019010548837351367L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer modelType;
|
||||
private Integer modelIndex;
|
||||
private String modelVersion;
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public Integer getModelType() {
|
||||
return this.modelType;
|
||||
}
|
||||
|
||||
public Integer getModelIndex() {
|
||||
return this.modelIndex;
|
||||
}
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public void setModelType(Integer modelType) {
|
||||
this.modelType = modelType;
|
||||
}
|
||||
|
||||
public void setModelIndex(Integer modelIndex) {
|
||||
this.modelIndex = modelIndex;
|
||||
}
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceSdkmodeGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7019010548837351367L;
|
||||
private List<String> deviceCodes;
|
||||
|
||||
public DeviceSdkmodeGetsDTO() {}
|
||||
|
||||
public DeviceSdkmodeGetsDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCodes = new ArrayList<>();
|
||||
this.deviceCodes.add(deviceCode);
|
||||
}
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceSdkmodeQueryDTO
|
||||
extends DeviceSdkBasicDTO
|
||||
{
|
||||
private static final long serialVersionUID = -7019010548837351367L;
|
||||
|
||||
public DeviceSdkmodeQueryDTO() {}
|
||||
|
||||
public DeviceSdkmodeQueryDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+87
@@ -0,0 +1,87 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceSdkmodeResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 1260260795268677264L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private Integer modelType;
|
||||
private Integer modelIndex;
|
||||
private String modelVersion;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getModelType() {
|
||||
return this.modelType;
|
||||
}
|
||||
|
||||
public void setModelType(Integer modelType) {
|
||||
this.modelType = modelType;
|
||||
}
|
||||
|
||||
public Integer getModelIndex() {
|
||||
return this.modelIndex;
|
||||
}
|
||||
|
||||
public void setModelIndex(Integer modelIndex) {
|
||||
this.modelIndex = modelIndex;
|
||||
}
|
||||
|
||||
public String getModelVersion() {
|
||||
return this.modelVersion;
|
||||
}
|
||||
|
||||
public void setModelVersion(String modelVersion) {
|
||||
this.modelVersion = modelVersion;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return 1260260795268677264L;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceVersionDeltDTO
|
||||
extends DeviceSdkBasicDTO
|
||||
{
|
||||
private static final long serialVersionUID = -7193603966528150116L;
|
||||
|
||||
public DeviceVersionDeltDTO() {}
|
||||
|
||||
public DeviceVersionDeltDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+135
@@ -0,0 +1,135 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceVersionEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7572942862367475098L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceType;
|
||||
private String appVersion;
|
||||
private String osVersion;
|
||||
private String firmwareVersion;
|
||||
private String supportAbility;
|
||||
private Long licenseExpires;
|
||||
private String reserveInfo;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 63 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 67 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 71 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 75 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceType() {
|
||||
/* 79 */ return this.deviceType;
|
||||
}
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
/* 83 */ this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
public String getAppVersion() {
|
||||
/* 87 */ return this.appVersion;
|
||||
}
|
||||
|
||||
public void setAppVersion(String appVersion) {
|
||||
/* 91 */ this.appVersion = appVersion;
|
||||
}
|
||||
|
||||
public String getOsVersion() {
|
||||
/* 95 */ return this.osVersion;
|
||||
}
|
||||
|
||||
public void setOsVersion(String osVersion) {
|
||||
/* 99 */ this.osVersion = osVersion;
|
||||
}
|
||||
|
||||
public String getFirmwareVersion() {
|
||||
return this.firmwareVersion;
|
||||
}
|
||||
|
||||
public void setFirmwareVersion(String firmwareVersion) {
|
||||
this.firmwareVersion = firmwareVersion;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
|
||||
public String getSupportAbility() {
|
||||
return this.supportAbility;
|
||||
}
|
||||
|
||||
public void setSupportAbility(String supportAbility) {
|
||||
this.supportAbility = supportAbility;
|
||||
}
|
||||
|
||||
public Long getLicenseExpires() {
|
||||
return this.licenseExpires;
|
||||
}
|
||||
|
||||
public void setLicenseExpires(Long licenseExpires) {
|
||||
this.licenseExpires = licenseExpires;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceVersionGetsDTO
|
||||
extends DeviceSdkBasicDTO
|
||||
{
|
||||
private static final long serialVersionUID = -7193603966528150116L;
|
||||
|
||||
public DeviceVersionGetsDTO() {}
|
||||
|
||||
public DeviceVersionGetsDTO(String deviceCode) {
|
||||
setDeviceCode(deviceCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceVersionQueryDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7019010548837351367L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceType;
|
||||
private String appVersion;
|
||||
private String osVersion;
|
||||
private String firmwareVersion;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceType() {
|
||||
return this.deviceType;
|
||||
}
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
public String getAppVersion() {
|
||||
return this.appVersion;
|
||||
}
|
||||
|
||||
public void setAppVersion(String appVersion) {
|
||||
this.appVersion = appVersion;
|
||||
}
|
||||
|
||||
public String getOsVersion() {
|
||||
return this.osVersion;
|
||||
}
|
||||
|
||||
public void setOsVersion(String osVersion) {
|
||||
this.osVersion = osVersion;
|
||||
}
|
||||
|
||||
public String getFirmwareVersion() {
|
||||
return this.firmwareVersion;
|
||||
}
|
||||
|
||||
public void setFirmwareVersion(String firmwareVersion) {
|
||||
this.firmwareVersion = firmwareVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
package cn.cloudwalk.common.device.bean.sdk.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceVersionResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7019010548837351367L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceType;
|
||||
private String appVersion;
|
||||
private String osVersion;
|
||||
private String firmwareVersion;
|
||||
private String reserveInfo;
|
||||
private String supportAbility;
|
||||
private Long licenseExpires;
|
||||
|
||||
public String getDeviceId() {
|
||||
/* 64 */ return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
/* 68 */ this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
/* 72 */ return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
/* 76 */ this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceType() {
|
||||
/* 80 */ return this.deviceType;
|
||||
}
|
||||
|
||||
public void setDeviceType(String deviceType) {
|
||||
/* 84 */ this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
public String getAppVersion() {
|
||||
/* 88 */ return this.appVersion;
|
||||
}
|
||||
|
||||
public void setAppVersion(String appVersion) {
|
||||
/* 92 */ this.appVersion = appVersion;
|
||||
}
|
||||
|
||||
public String getOsVersion() {
|
||||
/* 96 */ return this.osVersion;
|
||||
}
|
||||
|
||||
public void setOsVersion(String osVersion) {
|
||||
this.osVersion = osVersion;
|
||||
}
|
||||
|
||||
public String getFirmwareVersion() {
|
||||
return this.firmwareVersion;
|
||||
}
|
||||
|
||||
public void setFirmwareVersion(String firmwareVersion) {
|
||||
this.firmwareVersion = firmwareVersion;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
|
||||
public String getSupportAbility() {
|
||||
return this.supportAbility;
|
||||
}
|
||||
|
||||
public void setSupportAbility(String supportAbility) {
|
||||
this.supportAbility = supportAbility;
|
||||
}
|
||||
|
||||
public Long getLicenseExpires() {
|
||||
return this.licenseExpires;
|
||||
}
|
||||
|
||||
public void setLicenseExpires(Long licenseExpires) {
|
||||
this.licenseExpires = licenseExpires;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeAttrDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 7788767139828832320L;
|
||||
private String deviceTypeId;
|
||||
private List<String> ids;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeAttrEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7858946327546965914L;
|
||||
private String deviceTypeId;
|
||||
private String commandCode;
|
||||
private String attrCode;
|
||||
private String attrDisplay;
|
||||
private Integer orderBy;
|
||||
private String remark;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getCommandCode() {
|
||||
return this.commandCode;
|
||||
}
|
||||
|
||||
public void setCommandCode(String commandCode) {
|
||||
this.commandCode = commandCode;
|
||||
}
|
||||
|
||||
public String getAttrCode() {
|
||||
return this.attrCode;
|
||||
}
|
||||
|
||||
public void setAttrCode(String attrCode) {
|
||||
this.attrCode = attrCode;
|
||||
}
|
||||
|
||||
public String getAttrDisplay() {
|
||||
return this.attrDisplay;
|
||||
}
|
||||
|
||||
public void setAttrDisplay(String attrDisplay) {
|
||||
this.attrDisplay = attrDisplay;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+59
@@ -0,0 +1,59 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeAttrGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 8804790205938608542L;
|
||||
private String deviceTypeId;
|
||||
private List<String> ids;
|
||||
|
||||
public DeviceTypeAttrGetsDTO() {}
|
||||
|
||||
public DeviceTypeAttrGetsDTO(String deviceTypeId) {
|
||||
setDeviceTypeId(deviceTypeId);
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeAttrQueryDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7858946327546965914L;
|
||||
private String deviceTypeId;
|
||||
private String commandCode;
|
||||
private String attrCode;
|
||||
private String attrDisplay;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getCommandCode() {
|
||||
return this.commandCode;
|
||||
}
|
||||
|
||||
public void setCommandCode(String commandCode) {
|
||||
this.commandCode = commandCode;
|
||||
}
|
||||
|
||||
public String getAttrCode() {
|
||||
return this.attrCode;
|
||||
}
|
||||
|
||||
public void setAttrCode(String attrCode) {
|
||||
this.attrCode = attrCode;
|
||||
}
|
||||
|
||||
public String getAttrDisplay() {
|
||||
return this.attrDisplay;
|
||||
}
|
||||
|
||||
public void setAttrDisplay(String attrDisplay) {
|
||||
this.attrDisplay = attrDisplay;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeAttrResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 3962823581500334200L;
|
||||
private String deviceTypeId;
|
||||
private String commandCode;
|
||||
private String attrCode;
|
||||
private String attrDisplay;
|
||||
private Integer orderBy;
|
||||
private String remark;
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getCommandCode() {
|
||||
return this.commandCode;
|
||||
}
|
||||
|
||||
public void setCommandCode(String commandCode) {
|
||||
this.commandCode = commandCode;
|
||||
}
|
||||
|
||||
public String getAttrCode() {
|
||||
return this.attrCode;
|
||||
}
|
||||
|
||||
public void setAttrCode(String attrCode) {
|
||||
this.attrCode = attrCode;
|
||||
}
|
||||
|
||||
public String getAttrDisplay() {
|
||||
return this.attrDisplay;
|
||||
}
|
||||
|
||||
public void setAttrDisplay(String attrDisplay) {
|
||||
this.attrDisplay = attrDisplay;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7038883337821597825L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -1501907056188971024L;
|
||||
private Integer category;
|
||||
private String typeCode;
|
||||
private String typeName;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String icon;
|
||||
|
||||
public Integer getCategory() {
|
||||
return this.category;
|
||||
}
|
||||
|
||||
public void setCategory(Integer category) {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public String getTypeCode() {
|
||||
return this.typeCode;
|
||||
}
|
||||
|
||||
public void setTypeCode(String typeCode) {
|
||||
this.typeCode = typeCode;
|
||||
}
|
||||
|
||||
public String getTypeName() {
|
||||
return this.typeName;
|
||||
}
|
||||
|
||||
public void setTypeName(String typeName) {
|
||||
this.typeName = typeName;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7038883337821597825L;
|
||||
private List<String> ids;
|
||||
|
||||
public DeviceTypeGetsDTO() {}
|
||||
|
||||
public DeviceTypeGetsDTO(String id) {
|
||||
this.ids = new ArrayList<>();
|
||||
this.ids.add(id);
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 6509083780348441248L;
|
||||
private String id;
|
||||
private Integer category;
|
||||
private String typeCode;
|
||||
private String typeName;
|
||||
private Short status;
|
||||
private String icon;
|
||||
|
||||
public DeviceTypeQueryDTO() {}
|
||||
|
||||
public DeviceTypeQueryDTO(String typeCode, String typeName) {
|
||||
/* 57 */ this.typeCode = typeCode;
|
||||
/* 58 */ this.typeName = typeName;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
/* 62 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 66 */ this.id = id;
|
||||
}
|
||||
|
||||
public Integer getCategory() {
|
||||
/* 70 */ return this.category;
|
||||
}
|
||||
|
||||
public void setCategory(Integer category) {
|
||||
/* 74 */ this.category = category;
|
||||
}
|
||||
|
||||
public String getTypeCode() {
|
||||
/* 78 */ return this.typeCode;
|
||||
}
|
||||
|
||||
public void setTypeCode(String typeCode) {
|
||||
/* 82 */ this.typeCode = typeCode;
|
||||
}
|
||||
|
||||
public String getTypeName() {
|
||||
/* 86 */ return this.typeName;
|
||||
}
|
||||
|
||||
public void setTypeName(String typeName) {
|
||||
/* 90 */ this.typeName = typeName;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 94 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
/* 98 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
package cn.cloudwalk.common.device.bean.type.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DeviceTypeResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 27952222298226260L;
|
||||
private Integer category;
|
||||
private String typeCode;
|
||||
private String typeName;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String name;
|
||||
private Long endTime;
|
||||
private String upgradeId;
|
||||
private String icon;
|
||||
|
||||
public Integer getCategory() {
|
||||
/* 64 */ return this.category;
|
||||
}
|
||||
|
||||
public void setCategory(Integer category) {
|
||||
/* 68 */ this.category = category;
|
||||
}
|
||||
|
||||
public String getTypeCode() {
|
||||
/* 72 */ return this.typeCode;
|
||||
}
|
||||
|
||||
public void setTypeCode(String typeCode) {
|
||||
/* 76 */ this.typeCode = typeCode;
|
||||
}
|
||||
|
||||
public String getTypeName() {
|
||||
/* 80 */ return this.typeName;
|
||||
}
|
||||
|
||||
public void setTypeName(String typeName) {
|
||||
/* 84 */ this.typeName = typeName;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 88 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
/* 92 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 96 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String getUpgradeId() {
|
||||
return this.upgradeId;
|
||||
}
|
||||
|
||||
public void setUpgradeId(String upgradeId) {
|
||||
this.upgradeId = upgradeId;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.common.device.constant;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public interface DeviceConstant
|
||||
{
|
||||
public static final String OCEAN_DEFAULT_APPLICATIONID = "10000000";
|
||||
public static final String OCEAN_DEFAULT_BUSINESSID = "10000000";
|
||||
public static final String OCEAN_DEFAULT_SERVICECODE = "10000000";
|
||||
public static final String OCEAN_DEFAULT_CUST_ID = "10000000";
|
||||
public static final String OCEAN_DEFAULT_CROWSERVICEID = "10000000";
|
||||
public static final Long DEFAULT_DEVICE_HEART_TIME = Long.valueOf(1262275200000L);
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user