fix: relocate cwos-portal decompiled output to correct path; remove nested directory

Former-commit-id: dc30d42a8c55ed8b2382a41dc2434233fbed9930
This commit is contained in:
反编译工作区
2026-04-29 12:09:48 +08:00
parent ea8e492076
commit e8672a3c7b
1759 changed files with 547735 additions and 280 deletions
@@ -0,0 +1,61 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.elevator.util.DateUtils
* com.google.common.collect.Range
* org.apache.shardingsphere.api.sharding.standard.PreciseShardingAlgorithm
* org.apache.shardingsphere.api.sharding.standard.PreciseShardingValue
* org.apache.shardingsphere.api.sharding.standard.RangeShardingAlgorithm
* org.apache.shardingsphere.api.sharding.standard.RangeShardingValue
* org.springframework.util.CollectionUtils
*/
package cn.cloudwalk.elevator;
import cn.cloudwalk.elevator.util.DateUtils;
import com.google.common.collect.Range;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import org.apache.shardingsphere.api.sharding.standard.PreciseShardingAlgorithm;
import org.apache.shardingsphere.api.sharding.standard.PreciseShardingValue;
import org.apache.shardingsphere.api.sharding.standard.RangeShardingAlgorithm;
import org.apache.shardingsphere.api.sharding.standard.RangeShardingValue;
import org.springframework.util.CollectionUtils;
public class YearlyShardingAlgorithm
implements PreciseShardingAlgorithm<Long>,
RangeShardingAlgorithm<Long> {
public String doSharding(Collection<String> availableTargetNames, PreciseShardingValue<Long> shardingValue) {
Long time = (Long)shardingValue.getValue();
String suffix = DateUtils.formatDate((Date)new Date(time), (String)"yyyy");
String logicTableName = shardingValue.getLogicTableName();
String actualTableName = logicTableName + "_" + suffix;
if (!availableTargetNames.contains(actualTableName)) {
// empty if block
}
return actualTableName;
}
public Collection<String> doSharding(Collection<String> availableTargetNames, RangeShardingValue<Long> shardingValue) {
ArrayList<String> availables = new ArrayList<String>();
Range valueRange = shardingValue.getValueRange();
if (!CollectionUtils.isEmpty(availableTargetNames)) {
Integer lowerBoundYear = Integer.MIN_VALUE;
Integer upperBoundYear = Integer.MAX_VALUE;
if (valueRange.hasLowerBound()) {
lowerBoundYear = Integer.parseInt(DateUtils.formatDate((Date)new Date((Long)valueRange.lowerEndpoint()), (String)"YYYY"));
}
if (valueRange.hasUpperBound()) {
upperBoundYear = Integer.parseInt(DateUtils.formatDate((Date)new Date((Long)valueRange.upperEndpoint()), (String)"YYYY"));
}
for (String targetTable : availableTargetNames) {
Integer tableNameSuffix = Integer.parseInt(targetTable.substring(targetTable.lastIndexOf(95) + 1, targetTable.lastIndexOf(95) + 5));
if (tableNameSuffix.compareTo(lowerBoundYear) < 0 || tableNameSuffix.compareTo(upperBoundYear) > 0) continue;
availables.add(targetTable);
}
}
return availables;
}
}
@@ -0,0 +1,22 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.ServiceException
*/
package cn.cloudwalk.elevator.codeElevatorArea.dao;
import cn.cloudwalk.cloud.exception.ServiceException;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
public interface AcsElevatorCodeDao {
public Integer insertNew(AcsElevatorCodeDTO var1) throws ServiceException;
public Integer updateOld(AcsElevatorCodeDTO var1) throws ServiceException;
public AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO var1);
public AcsElevatorCodeResultDTO getFirstByParentId(String var1);
}
@@ -0,0 +1,52 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.codeElevatorArea.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorCodeDTO
extends CloudwalkBaseTimes
implements Serializable {
private String zoneId;
private String code;
private String parentId;
private Integer isFirst;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getIsFirst() {
return this.isFirst;
}
public void setIsFirst(Integer isFirst) {
this.isFirst = isFirst;
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
}
@@ -0,0 +1,62 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.codeElevatorArea.dto;
public class AcsElevatorCodeQueryDTO {
private String zoneId;
private String id;
private String zoneName;
private String zoneType;
private String code;
private Integer isFirst;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getZoneName() {
return this.zoneName;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public String getZoneType() {
return this.zoneType;
}
public void setZoneType(String zoneType) {
this.zoneType = zoneType;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Integer getIsFirst() {
return this.isFirst;
}
public void setIsFirst(Integer isFirst) {
this.isFirst = isFirst;
}
}
@@ -0,0 +1,35 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.codeElevatorArea.dto;
public class AcsElevatorCodeResultDTO {
private String zoneId;
private String code;
private Integer isFirst;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getIsFirst() {
return this.isFirst;
}
public void setIsFirst(Integer isFirst) {
this.isFirst = isFirst;
}
}
@@ -0,0 +1,44 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.ServiceException
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.codeElevatorArea.impl;
import cn.cloudwalk.cloud.exception.ServiceException;
import cn.cloudwalk.elevator.codeElevatorArea.dao.AcsElevatorCodeDao;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
import cn.cloudwalk.elevator.codeElevatorArea.mapper.AcsElevatorCodeMapper;
import javax.annotation.Resource;
import org.springframework.stereotype.Repository;
@Repository
public class AcsElevatorCodeDaoImpl
implements AcsElevatorCodeDao {
@Resource
private AcsElevatorCodeMapper acsElevatorCodeMapper;
@Override
public Integer insertNew(AcsElevatorCodeDTO dto) throws ServiceException {
return this.acsElevatorCodeMapper.insertNew(dto);
}
@Override
public Integer updateOld(AcsElevatorCodeDTO dto) throws ServiceException {
return this.acsElevatorCodeMapper.updateOld(dto);
}
@Override
public AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO dto) {
return this.acsElevatorCodeMapper.get(dto);
}
@Override
public AcsElevatorCodeResultDTO getFirstByParentId(String parentId) {
return this.acsElevatorCodeMapper.getFirstByParentId(parentId);
}
}
@@ -0,0 +1,18 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.codeElevatorArea.mapper;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
public interface AcsElevatorCodeMapper {
public AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO var1);
public int insertNew(AcsElevatorCodeDTO var1);
public int updateOld(AcsElevatorCodeDTO var1);
public AcsElevatorCodeResultDTO getFirstByParentId(String var1);
}
@@ -0,0 +1,18 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
public interface AcsDeviceTaskDao {
public Integer insert(AcsDeviceTaskAddDto var1);
public Integer updateBingDevices(AcsDeviceTaskAddDto var1);
public Integer updateIsStop(AcsDeviceTaskAddDto var1);
public AcsDeviceTaskDTO getById(String var1);
}
@@ -0,0 +1,50 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.exception.ServiceException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
*/
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.exception.ServiceException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListByBuildingIdDto;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListDto;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO;
import java.util.List;
public interface AcsElevatorDeviceDao {
public Integer add(AcsElevatorDeviceAddDTO var1) throws DataAccessException;
public Integer edit(AcsElevatorDeviceEditDTO var1) throws DataAccessException;
public Integer delete(List<String> var1) throws DataAccessException;
public CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO var1, CloudwalkPageInfo var2) throws DataAccessException;
public List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto var1) throws DataAccessException;
public List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto var1) throws DataAccessException;
public List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto var1) throws DataAccessException;
public List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO var1) throws ServiceException;
public AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO var1) throws ServiceException;
public AcsElevatorDeviceResultDTO getByDeciveCode(String var1) throws ServiceException;
public String getBuildingId(AcsElevatorDeviceQueryDTO var1) throws ServiceException;
public String getBusinessId(AcsElevatorDeviceQueryDTO var1) throws ServiceException;
}
@@ -0,0 +1,16 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.ServiceException
*/
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.cloud.exception.ServiceException;
public interface DeviceImageStoreDao {
public Boolean save(String var1, String var2) throws ServiceException;
public String getByBuildingId(String var1) throws ServiceException;
}
@@ -0,0 +1,103 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsDeviceQueryDTO
implements Serializable {
private static final long serialVersionUID = -9107652629099620576L;
private String id;
private List<String> ids;
private String businessId;
private String deviceId;
private List<String> deviceIds;
private String deviceCode;
private String parentDeviceId;
private List<String> parentDeviceIds;
private Integer openStatus;
private Integer queryParent;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
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 String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getParentDeviceId() {
return this.parentDeviceId;
}
public void setParentDeviceId(String parentDeviceId) {
this.parentDeviceId = parentDeviceId;
}
public List<String> getParentDeviceIds() {
return this.parentDeviceIds;
}
public void setParentDeviceIds(List<String> parentDeviceIds) {
this.parentDeviceIds = parentDeviceIds;
}
public Integer getQueryParent() {
return this.queryParent;
}
public void setQueryParent(Integer queryParent) {
this.queryParent = queryParent;
}
public Integer getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(Integer openStatus) {
this.openStatus = openStatus;
}
}
@@ -0,0 +1,80 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6868258119634367362L;
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
private String parentDeviceId;
private String imageStoreId;
private Integer openStatus;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getParentDeviceId() {
return this.parentDeviceId;
}
public void setParentDeviceId(String parentDeviceId) {
this.parentDeviceId = parentDeviceId;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public Integer getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(Integer openStatus) {
this.openStatus = openStatus;
}
}
@@ -0,0 +1,44 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceTaskAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private Integer allDevices;
private Integer bindDevices;
private Integer isStop;
public Integer getAllDevices() {
return this.allDevices;
}
public void setAllDevices(Integer allDevices) {
this.allDevices = allDevices;
}
public Integer getBindDevices() {
return this.bindDevices;
}
public void setBindDevices(Integer bindDevices) {
this.bindDevices = bindDevices;
}
public Integer getIsStop() {
return this.isStop;
}
public void setIsStop(Integer isStop) {
this.isStop = isStop;
}
}
@@ -0,0 +1,48 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.dto;
import java.io.Serializable;
public class AcsDeviceTaskDTO
implements Serializable {
private static final long serialVersionUID = -3746361327881264974L;
private String id;
private Integer allDevices;
private Integer bindDevices;
private Integer isStop;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Integer getAllDevices() {
return this.allDevices;
}
public void setAllDevices(Integer allDevices) {
this.allDevices = allDevices;
}
public Integer getBindDevices() {
return this.bindDevices;
}
public void setBindDevices(Integer bindDevices) {
this.bindDevices = bindDevices;
}
public Integer getIsStop() {
return this.isStop;
}
public void setIsStop(Integer isStop) {
this.isStop = isStop;
}
}
@@ -0,0 +1,155 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorDeviceAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeName;
private String elevatorFloorList;
private String currentFloorId;
private String currentFloor;
private String currentBuilding;
private String currentBuildingId;
private String areaName;
private Integer status;
private Integer deleteFlag;
private String areaId;
private String elevatorFloorIdList;
public String getElevatorFloorIdList() {
return this.elevatorFloorIdList;
}
public void setElevatorFloorIdList(String elevatorFloorIdList) {
this.elevatorFloorIdList = elevatorFloorIdList;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
public void setCurrentBuildingId(String currentBuildingId) {
this.currentBuildingId = currentBuildingId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getElevatorFloorList() {
return this.elevatorFloorList;
}
public void setElevatorFloorList(String elevatorFloorList) {
this.elevatorFloorList = elevatorFloorList;
}
public String getCurrentFloorId() {
return this.currentFloorId;
}
public void setCurrentFloorId(String currentFloorId) {
this.currentFloorId = currentFloorId;
}
public String getCurrentFloor() {
return this.currentFloor;
}
public void setCurrentFloor(String currentFloor) {
this.currentFloor = currentFloor;
}
public String getCurrentBuilding() {
return this.currentBuilding;
}
public void setCurrentBuilding(String currentBuilding) {
this.currentBuilding = currentBuilding;
}
public String getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getDeleteFlag() {
return this.deleteFlag;
}
public void setDeleteFlag(Integer deleteFlag) {
this.deleteFlag = deleteFlag;
}
public String toString() {
return "AcsElevatorDeviceAddDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", elevatorFloorList='" + this.elevatorFloorList + '\'' + ", currentFloorId='" + this.currentFloorId + '\'' + ", currentFloor='" + this.currentFloor + '\'' + ", currentBuilding='" + this.currentBuilding + '\'' + ", areaName='" + this.areaName + '\'' + ", status=" + this.status + ", deleteFlag=" + this.deleteFlag + '}';
}
}
@@ -0,0 +1,84 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorDeviceEditDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 885170301572808321L;
private String elevatorFloorList;
private String currentFloorId;
private String currentFloor;
private String currentBuilding;
private String currentBuildingId;
private String areaId;
private String elevatorFloorIdList;
public String getElevatorFloorIdList() {
return this.elevatorFloorIdList;
}
public void setElevatorFloorIdList(String elevatorFloorIdList) {
this.elevatorFloorIdList = elevatorFloorIdList;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getElevatorFloorList() {
return this.elevatorFloorList;
}
public void setElevatorFloorList(String elevatorFloorList) {
this.elevatorFloorList = elevatorFloorList;
}
public String getCurrentFloorId() {
return this.currentFloorId;
}
public void setCurrentFloorId(String currentFloorId) {
this.currentFloorId = currentFloorId;
}
public String getCurrentFloor() {
return this.currentFloor;
}
public void setCurrentFloor(String currentFloor) {
this.currentFloor = currentFloor;
}
public String getCurrentBuilding() {
return this.currentBuilding;
}
public void setCurrentBuilding(String currentBuilding) {
this.currentBuilding = currentBuilding;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
public void setCurrentBuildingId(String currentBuildingId) {
this.currentBuildingId = currentBuildingId;
}
public String toString() {
return "AcsElevatorDeciveEditDTO{elevatorFloorList='" + this.elevatorFloorList + '\'' + ", currentFloorId='" + this.currentFloorId + '\'' + ", currentFloor='" + this.currentFloor + '\'' + ", currentBuilding='" + this.currentBuilding + '\'' + ", currentBuildingId='" + this.currentBuildingId + '\'' + '}';
}
}
@@ -0,0 +1,68 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.dto;
import java.io.Serializable;
public class AcsElevatorDeviceListByBuildingIdDto
implements Serializable {
private String businessId;
private String currentBuildingId;
public String getBusinessId() {
return this.businessId;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public void setCurrentBuildingId(String currentBuildingId) {
this.currentBuildingId = currentBuildingId;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof AcsElevatorDeviceListByBuildingIdDto)) {
return false;
}
AcsElevatorDeviceListByBuildingIdDto other = (AcsElevatorDeviceListByBuildingIdDto)o;
if (!other.canEqual(this)) {
return false;
}
String this$businessId = this.getBusinessId();
String other$businessId = other.getBusinessId();
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
return false;
}
String this$currentBuildingId = this.getCurrentBuildingId();
String other$currentBuildingId = other.getCurrentBuildingId();
return !(this$currentBuildingId == null ? other$currentBuildingId != null : !this$currentBuildingId.equals(other$currentBuildingId));
}
protected boolean canEqual(Object other) {
return other instanceof AcsElevatorDeviceListByBuildingIdDto;
}
public int hashCode() {
int PRIME = 59;
int result = 1;
String $businessId = this.getBusinessId();
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
String $currentBuildingId = this.getCurrentBuildingId();
result = result * 59 + ($currentBuildingId == null ? 43 : $currentBuildingId.hashCode());
return result;
}
public String toString() {
return "AcsElevatorDeviceListByBuildingIdDto(businessId=" + this.getBusinessId() + ", currentBuildingId=" + this.getCurrentBuildingId() + ")";
}
}
@@ -0,0 +1,44 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
import java.util.List;
public class AcsElevatorDeviceListDto
extends CloudwalkBaseTimes
implements Serializable {
private String businessId;
private String currentFloorId;
private List<String> currentFloorIds;
public List<String> getCurrentFloorIds() {
return this.currentFloorIds;
}
public void setCurrentFloorIds(List<String> currentFloorIds) {
this.currentFloorIds = currentFloorIds;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getCurrentFloorId() {
return this.currentFloorId;
}
public void setCurrentFloorId(String currentFloorId) {
this.currentFloorId = currentFloorId;
}
}
@@ -0,0 +1,233 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorDeviceListResultDto
extends CloudwalkBaseTimes
implements Serializable {
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeName;
private String elevatorFloorList;
private String currentFloorId;
private String currentFloor;
private String currentBuilding;
private String currentBuildingId;
private String areaName;
private Integer status;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getElevatorFloorList() {
return this.elevatorFloorList;
}
public void setElevatorFloorList(String elevatorFloorList) {
this.elevatorFloorList = elevatorFloorList;
}
public String getCurrentFloorId() {
return this.currentFloorId;
}
public void setCurrentFloorId(String currentFloorId) {
this.currentFloorId = currentFloorId;
}
public String getCurrentFloor() {
return this.currentFloor;
}
public void setCurrentFloor(String currentFloor) {
this.currentFloor = currentFloor;
}
public String getCurrentBuilding() {
return this.currentBuilding;
}
public void setCurrentBuilding(String currentBuilding) {
this.currentBuilding = currentBuilding;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
public void setCurrentBuildingId(String currentBuildingId) {
this.currentBuildingId = currentBuildingId;
}
public String getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof AcsElevatorDeviceListResultDto)) {
return false;
}
AcsElevatorDeviceListResultDto other = (AcsElevatorDeviceListResultDto)o;
if (!other.canEqual(this)) {
return false;
}
String this$businessId = this.getBusinessId();
String other$businessId = other.getBusinessId();
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
return false;
}
String this$deviceId = this.getDeviceId();
String other$deviceId = other.getDeviceId();
if (this$deviceId == null ? other$deviceId != null : !this$deviceId.equals(other$deviceId)) {
return false;
}
String this$deviceCode = this.getDeviceCode();
String other$deviceCode = other.getDeviceCode();
if (this$deviceCode == null ? other$deviceCode != null : !this$deviceCode.equals(other$deviceCode)) {
return false;
}
String this$deviceName = this.getDeviceName();
String other$deviceName = other.getDeviceName();
if (this$deviceName == null ? other$deviceName != null : !this$deviceName.equals(other$deviceName)) {
return false;
}
String this$deviceTypeName = this.getDeviceTypeName();
String other$deviceTypeName = other.getDeviceTypeName();
if (this$deviceTypeName == null ? other$deviceTypeName != null : !this$deviceTypeName.equals(other$deviceTypeName)) {
return false;
}
String this$elevatorFloorList = this.getElevatorFloorList();
String other$elevatorFloorList = other.getElevatorFloorList();
if (this$elevatorFloorList == null ? other$elevatorFloorList != null : !this$elevatorFloorList.equals(other$elevatorFloorList)) {
return false;
}
String this$currentFloorId = this.getCurrentFloorId();
String other$currentFloorId = other.getCurrentFloorId();
if (this$currentFloorId == null ? other$currentFloorId != null : !this$currentFloorId.equals(other$currentFloorId)) {
return false;
}
String this$currentFloor = this.getCurrentFloor();
String other$currentFloor = other.getCurrentFloor();
if (this$currentFloor == null ? other$currentFloor != null : !this$currentFloor.equals(other$currentFloor)) {
return false;
}
String this$currentBuilding = this.getCurrentBuilding();
String other$currentBuilding = other.getCurrentBuilding();
if (this$currentBuilding == null ? other$currentBuilding != null : !this$currentBuilding.equals(other$currentBuilding)) {
return false;
}
String this$currentBuildingId = this.getCurrentBuildingId();
String other$currentBuildingId = other.getCurrentBuildingId();
if (this$currentBuildingId == null ? other$currentBuildingId != null : !this$currentBuildingId.equals(other$currentBuildingId)) {
return false;
}
String this$areaName = this.getAreaName();
String other$areaName = other.getAreaName();
if (this$areaName == null ? other$areaName != null : !this$areaName.equals(other$areaName)) {
return false;
}
Integer this$status = this.getStatus();
Integer other$status = other.getStatus();
return !(this$status == null ? other$status != null : !((Object)this$status).equals(other$status));
}
protected boolean canEqual(Object other) {
return other instanceof AcsElevatorDeviceListResultDto;
}
public int hashCode() {
int PRIME = 59;
int result = 1;
String $businessId = this.getBusinessId();
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
String $deviceId = this.getDeviceId();
result = result * 59 + ($deviceId == null ? 43 : $deviceId.hashCode());
String $deviceCode = this.getDeviceCode();
result = result * 59 + ($deviceCode == null ? 43 : $deviceCode.hashCode());
String $deviceName = this.getDeviceName();
result = result * 59 + ($deviceName == null ? 43 : $deviceName.hashCode());
String $deviceTypeName = this.getDeviceTypeName();
result = result * 59 + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode());
String $elevatorFloorList = this.getElevatorFloorList();
result = result * 59 + ($elevatorFloorList == null ? 43 : $elevatorFloorList.hashCode());
String $currentFloorId = this.getCurrentFloorId();
result = result * 59 + ($currentFloorId == null ? 43 : $currentFloorId.hashCode());
String $currentFloor = this.getCurrentFloor();
result = result * 59 + ($currentFloor == null ? 43 : $currentFloor.hashCode());
String $currentBuilding = this.getCurrentBuilding();
result = result * 59 + ($currentBuilding == null ? 43 : $currentBuilding.hashCode());
String $currentBuildingId = this.getCurrentBuildingId();
result = result * 59 + ($currentBuildingId == null ? 43 : $currentBuildingId.hashCode());
String $areaName = this.getAreaName();
result = result * 59 + ($areaName == null ? 43 : $areaName.hashCode());
Integer $status = this.getStatus();
result = result * 59 + ($status == null ? 43 : ((Object)$status).hashCode());
return result;
}
public String toString() {
return "AcsElevatorDeviceListResultDto(businessId=" + this.getBusinessId() + ", deviceId=" + this.getDeviceId() + ", deviceCode=" + this.getDeviceCode() + ", deviceName=" + this.getDeviceName() + ", deviceTypeName=" + this.getDeviceTypeName() + ", elevatorFloorList=" + this.getElevatorFloorList() + ", currentFloorId=" + this.getCurrentFloorId() + ", currentFloor=" + this.getCurrentFloor() + ", currentBuilding=" + this.getCurrentBuilding() + ", currentBuildingId=" + this.getCurrentBuildingId() + ", areaName=" + this.getAreaName() + ", status=" + this.getStatus() + ")";
}
}
@@ -0,0 +1,25 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.page.CloudwalkBasePageForm
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
import java.io.Serializable;
public class AcsElevatorDeviceQueryByIdDTO
extends CloudwalkBasePageForm
implements Serializable {
private String id;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
}
@@ -0,0 +1,108 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
import java.util.List;
public class AcsElevatorDeviceQueryDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -761586737506722816L;
private String areaName;
private String deviceCode;
private String deviceName;
private String deviceTypeName;
private List<String> areaIds;
private String deviceId;
private String businessId;
private String ip;
private Integer status;
private Integer onlineStatus;
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getOnlineStatus() {
return this.onlineStatus;
}
public void setOnlineStatus(Integer onlineStatus) {
this.onlineStatus = onlineStatus;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public List<String> getAreaIds() {
return this.areaIds;
}
public void setAreaIds(List<String> areaIds) {
this.areaIds = areaIds;
}
public String getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
}
@@ -0,0 +1,257 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.dto;
public class AcsElevatorDeviceQueryFoDTO {
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeName;
private String elevatorFloorList;
private String currentFloorId;
private String currentFloor;
private String currentBuilding;
private String currentBuildingId;
private String areaName;
private String areaId;
private String elevatorFloorIdList;
public String getId() {
return this.id;
}
public String getBusinessId() {
return this.businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public String getDeviceName() {
return this.deviceName;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public String getElevatorFloorList() {
return this.elevatorFloorList;
}
public String getCurrentFloorId() {
return this.currentFloorId;
}
public String getCurrentFloor() {
return this.currentFloor;
}
public String getCurrentBuilding() {
return this.currentBuilding;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
public String getAreaName() {
return this.areaName;
}
public String getAreaId() {
return this.areaId;
}
public String getElevatorFloorIdList() {
return this.elevatorFloorIdList;
}
public void setId(String id) {
this.id = id;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public void setElevatorFloorList(String elevatorFloorList) {
this.elevatorFloorList = elevatorFloorList;
}
public void setCurrentFloorId(String currentFloorId) {
this.currentFloorId = currentFloorId;
}
public void setCurrentFloor(String currentFloor) {
this.currentFloor = currentFloor;
}
public void setCurrentBuilding(String currentBuilding) {
this.currentBuilding = currentBuilding;
}
public void setCurrentBuildingId(String currentBuildingId) {
this.currentBuildingId = currentBuildingId;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public void setElevatorFloorIdList(String elevatorFloorIdList) {
this.elevatorFloorIdList = elevatorFloorIdList;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof AcsElevatorDeviceQueryFoDTO)) {
return false;
}
AcsElevatorDeviceQueryFoDTO other = (AcsElevatorDeviceQueryFoDTO)o;
if (!other.canEqual(this)) {
return false;
}
String this$id = this.getId();
String other$id = other.getId();
if (this$id == null ? other$id != null : !this$id.equals(other$id)) {
return false;
}
String this$businessId = this.getBusinessId();
String other$businessId = other.getBusinessId();
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
return false;
}
String this$deviceId = this.getDeviceId();
String other$deviceId = other.getDeviceId();
if (this$deviceId == null ? other$deviceId != null : !this$deviceId.equals(other$deviceId)) {
return false;
}
String this$deviceCode = this.getDeviceCode();
String other$deviceCode = other.getDeviceCode();
if (this$deviceCode == null ? other$deviceCode != null : !this$deviceCode.equals(other$deviceCode)) {
return false;
}
String this$deviceName = this.getDeviceName();
String other$deviceName = other.getDeviceName();
if (this$deviceName == null ? other$deviceName != null : !this$deviceName.equals(other$deviceName)) {
return false;
}
String this$deviceTypeName = this.getDeviceTypeName();
String other$deviceTypeName = other.getDeviceTypeName();
if (this$deviceTypeName == null ? other$deviceTypeName != null : !this$deviceTypeName.equals(other$deviceTypeName)) {
return false;
}
String this$elevatorFloorList = this.getElevatorFloorList();
String other$elevatorFloorList = other.getElevatorFloorList();
if (this$elevatorFloorList == null ? other$elevatorFloorList != null : !this$elevatorFloorList.equals(other$elevatorFloorList)) {
return false;
}
String this$currentFloorId = this.getCurrentFloorId();
String other$currentFloorId = other.getCurrentFloorId();
if (this$currentFloorId == null ? other$currentFloorId != null : !this$currentFloorId.equals(other$currentFloorId)) {
return false;
}
String this$currentFloor = this.getCurrentFloor();
String other$currentFloor = other.getCurrentFloor();
if (this$currentFloor == null ? other$currentFloor != null : !this$currentFloor.equals(other$currentFloor)) {
return false;
}
String this$currentBuilding = this.getCurrentBuilding();
String other$currentBuilding = other.getCurrentBuilding();
if (this$currentBuilding == null ? other$currentBuilding != null : !this$currentBuilding.equals(other$currentBuilding)) {
return false;
}
String this$currentBuildingId = this.getCurrentBuildingId();
String other$currentBuildingId = other.getCurrentBuildingId();
if (this$currentBuildingId == null ? other$currentBuildingId != null : !this$currentBuildingId.equals(other$currentBuildingId)) {
return false;
}
String this$areaName = this.getAreaName();
String other$areaName = other.getAreaName();
if (this$areaName == null ? other$areaName != null : !this$areaName.equals(other$areaName)) {
return false;
}
String this$areaId = this.getAreaId();
String other$areaId = other.getAreaId();
if (this$areaId == null ? other$areaId != null : !this$areaId.equals(other$areaId)) {
return false;
}
String this$elevatorFloorIdList = this.getElevatorFloorIdList();
String other$elevatorFloorIdList = other.getElevatorFloorIdList();
return !(this$elevatorFloorIdList == null ? other$elevatorFloorIdList != null : !this$elevatorFloorIdList.equals(other$elevatorFloorIdList));
}
protected boolean canEqual(Object other) {
return other instanceof AcsElevatorDeviceQueryFoDTO;
}
public int hashCode() {
int PRIME = 59;
int result = 1;
String $id = this.getId();
result = result * 59 + ($id == null ? 43 : $id.hashCode());
String $businessId = this.getBusinessId();
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
String $deviceId = this.getDeviceId();
result = result * 59 + ($deviceId == null ? 43 : $deviceId.hashCode());
String $deviceCode = this.getDeviceCode();
result = result * 59 + ($deviceCode == null ? 43 : $deviceCode.hashCode());
String $deviceName = this.getDeviceName();
result = result * 59 + ($deviceName == null ? 43 : $deviceName.hashCode());
String $deviceTypeName = this.getDeviceTypeName();
result = result * 59 + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode());
String $elevatorFloorList = this.getElevatorFloorList();
result = result * 59 + ($elevatorFloorList == null ? 43 : $elevatorFloorList.hashCode());
String $currentFloorId = this.getCurrentFloorId();
result = result * 59 + ($currentFloorId == null ? 43 : $currentFloorId.hashCode());
String $currentFloor = this.getCurrentFloor();
result = result * 59 + ($currentFloor == null ? 43 : $currentFloor.hashCode());
String $currentBuilding = this.getCurrentBuilding();
result = result * 59 + ($currentBuilding == null ? 43 : $currentBuilding.hashCode());
String $currentBuildingId = this.getCurrentBuildingId();
result = result * 59 + ($currentBuildingId == null ? 43 : $currentBuildingId.hashCode());
String $areaName = this.getAreaName();
result = result * 59 + ($areaName == null ? 43 : $areaName.hashCode());
String $areaId = this.getAreaId();
result = result * 59 + ($areaId == null ? 43 : $areaId.hashCode());
String $elevatorFloorIdList = this.getElevatorFloorIdList();
result = result * 59 + ($elevatorFloorIdList == null ? 43 : $elevatorFloorIdList.hashCode());
return result;
}
public String toString() {
return "AcsElevatorDeviceQueryFoDTO(id=" + this.getId() + ", businessId=" + this.getBusinessId() + ", deviceId=" + this.getDeviceId() + ", deviceCode=" + this.getDeviceCode() + ", deviceName=" + this.getDeviceName() + ", deviceTypeName=" + this.getDeviceTypeName() + ", elevatorFloorList=" + this.getElevatorFloorList() + ", currentFloorId=" + this.getCurrentFloorId() + ", currentFloor=" + this.getCurrentFloor() + ", currentBuilding=" + this.getCurrentBuilding() + ", currentBuildingId=" + this.getCurrentBuildingId() + ", areaName=" + this.getAreaName() + ", areaId=" + this.getAreaId() + ", elevatorFloorIdList=" + this.getElevatorFloorIdList() + ")";
}
}
@@ -0,0 +1,28 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorDeviceQueryResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -761586737506722816L;
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeName;
private String elevatorFloorList;
private String currentFloorId;
private String currentFloor;
private String currentBuilding;
private String currentBuildingId;
private Integer status;
}
@@ -0,0 +1,353 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.dto;
public class AcsElevatorDeviceResultDTO {
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeName;
private String elevatorFloorList;
private String currentFloorId;
private String currentFloor;
private String currentBuilding;
private String currentBuildingId;
private String areaName;
private String areaId;
private Integer status;
private String statusString;
private String elevatorFloorIdList;
private Long lastHeartbeatTime;
private String imageStoreId;
private String ip;
private Integer onlineStatus;
public String getElevatorFloorIdList() {
return this.elevatorFloorIdList;
}
public void setElevatorFloorIdList(String elevatorFloorIdList) {
this.elevatorFloorIdList = elevatorFloorIdList;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getElevatorFloorList() {
return this.elevatorFloorList;
}
public void setElevatorFloorList(String elevatorFloorList) {
this.elevatorFloorList = elevatorFloorList;
}
public String getCurrentFloorId() {
return this.currentFloorId;
}
public void setCurrentFloorId(String currentFloorId) {
this.currentFloorId = currentFloorId;
}
public String getCurrentFloor() {
return this.currentFloor;
}
public void setCurrentFloor(String currentFloor) {
this.currentFloor = currentFloor;
}
public String getCurrentBuilding() {
return this.currentBuilding;
}
public void setCurrentBuilding(String currentBuilding) {
this.currentBuilding = currentBuilding;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
public void setCurrentBuildingId(String currentBuildingId) {
this.currentBuildingId = currentBuildingId;
}
public String getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getLastHeartbeatTime() {
return this.lastHeartbeatTime;
}
public void setLastHeartbeatTime(Long lastHeartbeatTime) {
this.lastHeartbeatTime = lastHeartbeatTime;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getStatusString() {
return this.statusString;
}
public void setStatusString(String statusString) {
this.statusString = statusString;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public Integer getOnlineStatus() {
return this.onlineStatus;
}
public void setOnlineStatus(Integer onlineStatus) {
this.onlineStatus = onlineStatus;
}
public String getId() {
return this.id;
}
public String getIp() {
return this.ip;
}
public void setId(String id) {
this.id = id;
}
public void setIp(String ip) {
this.ip = ip;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof AcsElevatorDeviceResultDTO)) {
return false;
}
AcsElevatorDeviceResultDTO other = (AcsElevatorDeviceResultDTO)o;
if (!other.canEqual(this)) {
return false;
}
String this$id = this.getId();
String other$id = other.getId();
if (this$id == null ? other$id != null : !this$id.equals(other$id)) {
return false;
}
String this$businessId = this.getBusinessId();
String other$businessId = other.getBusinessId();
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
return false;
}
String this$deviceId = this.getDeviceId();
String other$deviceId = other.getDeviceId();
if (this$deviceId == null ? other$deviceId != null : !this$deviceId.equals(other$deviceId)) {
return false;
}
String this$deviceCode = this.getDeviceCode();
String other$deviceCode = other.getDeviceCode();
if (this$deviceCode == null ? other$deviceCode != null : !this$deviceCode.equals(other$deviceCode)) {
return false;
}
String this$deviceName = this.getDeviceName();
String other$deviceName = other.getDeviceName();
if (this$deviceName == null ? other$deviceName != null : !this$deviceName.equals(other$deviceName)) {
return false;
}
String this$deviceTypeName = this.getDeviceTypeName();
String other$deviceTypeName = other.getDeviceTypeName();
if (this$deviceTypeName == null ? other$deviceTypeName != null : !this$deviceTypeName.equals(other$deviceTypeName)) {
return false;
}
String this$elevatorFloorList = this.getElevatorFloorList();
String other$elevatorFloorList = other.getElevatorFloorList();
if (this$elevatorFloorList == null ? other$elevatorFloorList != null : !this$elevatorFloorList.equals(other$elevatorFloorList)) {
return false;
}
String this$currentFloorId = this.getCurrentFloorId();
String other$currentFloorId = other.getCurrentFloorId();
if (this$currentFloorId == null ? other$currentFloorId != null : !this$currentFloorId.equals(other$currentFloorId)) {
return false;
}
String this$currentFloor = this.getCurrentFloor();
String other$currentFloor = other.getCurrentFloor();
if (this$currentFloor == null ? other$currentFloor != null : !this$currentFloor.equals(other$currentFloor)) {
return false;
}
String this$currentBuilding = this.getCurrentBuilding();
String other$currentBuilding = other.getCurrentBuilding();
if (this$currentBuilding == null ? other$currentBuilding != null : !this$currentBuilding.equals(other$currentBuilding)) {
return false;
}
String this$currentBuildingId = this.getCurrentBuildingId();
String other$currentBuildingId = other.getCurrentBuildingId();
if (this$currentBuildingId == null ? other$currentBuildingId != null : !this$currentBuildingId.equals(other$currentBuildingId)) {
return false;
}
String this$areaName = this.getAreaName();
String other$areaName = other.getAreaName();
if (this$areaName == null ? other$areaName != null : !this$areaName.equals(other$areaName)) {
return false;
}
String this$areaId = this.getAreaId();
String other$areaId = other.getAreaId();
if (this$areaId == null ? other$areaId != null : !this$areaId.equals(other$areaId)) {
return false;
}
Integer this$status = this.getStatus();
Integer other$status = other.getStatus();
if (this$status == null ? other$status != null : !((Object)this$status).equals(other$status)) {
return false;
}
String this$statusString = this.getStatusString();
String other$statusString = other.getStatusString();
if (this$statusString == null ? other$statusString != null : !this$statusString.equals(other$statusString)) {
return false;
}
String this$elevatorFloorIdList = this.getElevatorFloorIdList();
String other$elevatorFloorIdList = other.getElevatorFloorIdList();
if (this$elevatorFloorIdList == null ? other$elevatorFloorIdList != null : !this$elevatorFloorIdList.equals(other$elevatorFloorIdList)) {
return false;
}
Long this$lastHeartbeatTime = this.getLastHeartbeatTime();
Long other$lastHeartbeatTime = other.getLastHeartbeatTime();
if (this$lastHeartbeatTime == null ? other$lastHeartbeatTime != null : !((Object)this$lastHeartbeatTime).equals(other$lastHeartbeatTime)) {
return false;
}
String this$imageStoreId = this.getImageStoreId();
String other$imageStoreId = other.getImageStoreId();
if (this$imageStoreId == null ? other$imageStoreId != null : !this$imageStoreId.equals(other$imageStoreId)) {
return false;
}
String this$ip = this.getIp();
String other$ip = other.getIp();
if (this$ip == null ? other$ip != null : !this$ip.equals(other$ip)) {
return false;
}
Integer this$onlineStatus = this.getOnlineStatus();
Integer other$onlineStatus = other.getOnlineStatus();
return !(this$onlineStatus == null ? other$onlineStatus != null : !((Object)this$onlineStatus).equals(other$onlineStatus));
}
protected boolean canEqual(Object other) {
return other instanceof AcsElevatorDeviceResultDTO;
}
public int hashCode() {
int PRIME = 59;
int result = 1;
String $id = this.getId();
result = result * 59 + ($id == null ? 43 : $id.hashCode());
String $businessId = this.getBusinessId();
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
String $deviceId = this.getDeviceId();
result = result * 59 + ($deviceId == null ? 43 : $deviceId.hashCode());
String $deviceCode = this.getDeviceCode();
result = result * 59 + ($deviceCode == null ? 43 : $deviceCode.hashCode());
String $deviceName = this.getDeviceName();
result = result * 59 + ($deviceName == null ? 43 : $deviceName.hashCode());
String $deviceTypeName = this.getDeviceTypeName();
result = result * 59 + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode());
String $elevatorFloorList = this.getElevatorFloorList();
result = result * 59 + ($elevatorFloorList == null ? 43 : $elevatorFloorList.hashCode());
String $currentFloorId = this.getCurrentFloorId();
result = result * 59 + ($currentFloorId == null ? 43 : $currentFloorId.hashCode());
String $currentFloor = this.getCurrentFloor();
result = result * 59 + ($currentFloor == null ? 43 : $currentFloor.hashCode());
String $currentBuilding = this.getCurrentBuilding();
result = result * 59 + ($currentBuilding == null ? 43 : $currentBuilding.hashCode());
String $currentBuildingId = this.getCurrentBuildingId();
result = result * 59 + ($currentBuildingId == null ? 43 : $currentBuildingId.hashCode());
String $areaName = this.getAreaName();
result = result * 59 + ($areaName == null ? 43 : $areaName.hashCode());
String $areaId = this.getAreaId();
result = result * 59 + ($areaId == null ? 43 : $areaId.hashCode());
Integer $status = this.getStatus();
result = result * 59 + ($status == null ? 43 : ((Object)$status).hashCode());
String $statusString = this.getStatusString();
result = result * 59 + ($statusString == null ? 43 : $statusString.hashCode());
String $elevatorFloorIdList = this.getElevatorFloorIdList();
result = result * 59 + ($elevatorFloorIdList == null ? 43 : $elevatorFloorIdList.hashCode());
Long $lastHeartbeatTime = this.getLastHeartbeatTime();
result = result * 59 + ($lastHeartbeatTime == null ? 43 : ((Object)$lastHeartbeatTime).hashCode());
String $imageStoreId = this.getImageStoreId();
result = result * 59 + ($imageStoreId == null ? 43 : $imageStoreId.hashCode());
String $ip = this.getIp();
result = result * 59 + ($ip == null ? 43 : $ip.hashCode());
Integer $onlineStatus = this.getOnlineStatus();
result = result * 59 + ($onlineStatus == null ? 43 : ((Object)$onlineStatus).hashCode());
return result;
}
public String toString() {
return "AcsElevatorDeviceResultDTO(id=" + this.getId() + ", businessId=" + this.getBusinessId() + ", deviceId=" + this.getDeviceId() + ", deviceCode=" + this.getDeviceCode() + ", deviceName=" + this.getDeviceName() + ", deviceTypeName=" + this.getDeviceTypeName() + ", elevatorFloorList=" + this.getElevatorFloorList() + ", currentFloorId=" + this.getCurrentFloorId() + ", currentFloor=" + this.getCurrentFloor() + ", currentBuilding=" + this.getCurrentBuilding() + ", currentBuildingId=" + this.getCurrentBuildingId() + ", areaName=" + this.getAreaName() + ", areaId=" + this.getAreaId() + ", status=" + this.getStatus() + ", statusString=" + this.getStatusString() + ", elevatorFloorIdList=" + this.getElevatorFloorIdList() + ", lastHeartbeatTime=" + this.getLastHeartbeatTime() + ", imageStoreId=" + this.getImageStoreId() + ", ip=" + this.getIp() + ", onlineStatus=" + this.getOnlineStatus() + ")";
}
}
@@ -0,0 +1,43 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.device.impl;
import cn.cloudwalk.elevator.device.dao.AcsDeviceTaskDao;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
import cn.cloudwalk.elevator.device.mapper.AcsDeviceTaskMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
@Repository
public class AcsDeviceTaskDaoImpl
implements AcsDeviceTaskDao {
@Autowired
private AcsDeviceTaskMapper acsDeviceTaskMapper;
@Override
public Integer insert(AcsDeviceTaskAddDto dto) {
return this.acsDeviceTaskMapper.insert(dto);
}
@Override
public Integer updateBingDevices(AcsDeviceTaskAddDto dto) {
return this.acsDeviceTaskMapper.updateBingDevices(dto);
}
@Override
public Integer updateIsStop(AcsDeviceTaskAddDto dto) {
return this.acsDeviceTaskMapper.updateIsStop(dto);
}
@Override
public AcsDeviceTaskDTO getById(String taskId) {
return this.acsDeviceTaskMapper.getById(taskId);
}
}
@@ -0,0 +1,154 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.exception.ServiceException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.cloud.utils.BeanCopyUtils
* com.github.pagehelper.Page
* com.github.pagehelper.PageHelper
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.device.impl;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.exception.ServiceException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.cloud.utils.BeanCopyUtils;
import cn.cloudwalk.elevator.device.dao.AcsElevatorDeviceDao;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListByBuildingIdDto;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListDto;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO;
import cn.cloudwalk.elevator.device.mapper.AcsElevatorDeviceMapper;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import java.util.Collection;
import java.util.List;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
@Repository
public class AcsElevatorDeviceDaoImpl
implements AcsElevatorDeviceDao {
@Resource
private AcsElevatorDeviceMapper acsElevatorDeviceMapper;
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public Integer add(AcsElevatorDeviceAddDTO dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u6d3e\u68af\u8bbe\u5907\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public Integer edit(AcsElevatorDeviceEditDTO dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.edit(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u6d3e\u68af\u8bbe\u5907\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public Integer delete(List<String> ids) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.delete(ids);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u6d3e\u68af\u8bbe\u5907\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
PageHelper.startPage((int)page.getCurrentPage(), (int)page.getPageSize());
Page result = (Page)this.acsElevatorDeviceMapper.page(dto);
return new CloudwalkPageAble((Collection)BeanCopyUtils.copy((Collection)result.getResult(), AcsElevatorDeviceResultDTO.class), page, result.getTotal());
}
catch (Exception e) {
this.logger.error("\u8bbe\u5907\u5206\u9875\u67e5\u8be2\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.listByZoneId(dto);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u697c\u5c42id\u83b7\u53d6\u8bbe\u5907\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.listByZoneIds(dto);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u697c\u5c42id\u96c6\u5408\u83b7\u53d6\u8bbe\u5907\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.listBuBuildingId(dto);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u697c\u680bid\u83b7\u53d6\u8bbe\u5907\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.get(dto);
}
@Override
public AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.getById(dto);
}
@Override
public AcsElevatorDeviceResultDTO getByDeciveCode(String deviceCode) throws ServiceException {
AcsElevatorDeviceQueryDTO dto = new AcsElevatorDeviceQueryDTO();
dto.setDeviceCode(deviceCode);
return this.acsElevatorDeviceMapper.getByDeciveCode(dto);
}
@Override
public String getBuildingId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.getBuildingId(dto);
}
@Override
public String getBusinessId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.getBusinessId(dto);
}
}
@@ -0,0 +1,32 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.ServiceException
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.device.impl;
import cn.cloudwalk.cloud.exception.ServiceException;
import cn.cloudwalk.elevator.device.dao.DeviceImageStoreDao;
import cn.cloudwalk.elevator.device.mapper.DeviceImageStoreMapper;
import javax.annotation.Resource;
import org.springframework.stereotype.Repository;
@Repository
public class DeviceImageStoreDaoImpl
implements DeviceImageStoreDao {
@Resource
private DeviceImageStoreMapper deviceImageStoreMapper;
@Override
public Boolean save(String buildingId, String imageStoreId) throws ServiceException {
return this.deviceImageStoreMapper.save(buildingId, imageStoreId);
}
@Override
public String getByBuildingId(String buildingId) throws ServiceException {
return this.deviceImageStoreMapper.getByBuildingId(buildingId);
}
}
@@ -0,0 +1,18 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.mapper;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
public interface AcsDeviceTaskMapper {
public Integer insert(AcsDeviceTaskAddDto var1);
public Integer updateBingDevices(AcsDeviceTaskAddDto var1);
public Integer updateIsStop(AcsDeviceTaskAddDto var1);
public AcsDeviceTaskDTO getById(String var1);
}
@@ -0,0 +1,40 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.device.mapper;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListByBuildingIdDto;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListDto;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO;
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO;
import java.util.List;
public interface AcsElevatorDeviceMapper {
public int add(AcsElevatorDeviceAddDTO var1);
public int edit(AcsElevatorDeviceEditDTO var1);
public int delete(List<String> var1);
public List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto var1);
public List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto var1);
public List<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO var1);
public List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto var1);
public List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO var1);
public AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO var1);
public AcsElevatorDeviceResultDTO getByDeciveCode(AcsElevatorDeviceQueryDTO var1);
public String getBuildingId(AcsElevatorDeviceQueryDTO var1);
public String getBusinessId(AcsElevatorDeviceQueryDTO var1);
}
@@ -0,0 +1,16 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.apache.ibatis.annotations.Param
*/
package cn.cloudwalk.elevator.device.mapper;
import org.apache.ibatis.annotations.Param;
public interface DeviceImageStoreMapper {
public Boolean save(@Param(value="buildingId") String var1, @Param(value="imageStoreId") String var2);
public String getByBuildingId(String var1);
}
@@ -0,0 +1,39 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
*/
package cn.cloudwalk.elevator.passrule.dao;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleIsDefaultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto;
import java.util.List;
public interface AcsPassRuleDao {
public Integer insert(AcsPassRuleAddDto var1) throws DataAccessException;
public Integer update(AcsPassRuleEditDto var1) throws DataAccessException;
public Integer delete(AcsPassRuleDeleteDto var1) throws DataAccessException;
public CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto var1, CloudwalkPageInfo var2) throws DataAccessException;
public List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto var1) throws DataAccessException;
public String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto var1) throws DataAccessException;
public List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto var1) throws DataAccessException;
}
@@ -0,0 +1,79 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
*/
package cn.cloudwalk.elevator.passrule.dao;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto;
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto;
import java.util.List;
public interface ImageRuleRefDao {
public CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto var1, CloudwalkPageInfo var2) throws DataAccessException;
public List<String> listRuleByZoneIdExtDefault(String var1);
public List<ImageRuleRefResultDto> listByParentRule(List<String> var1);
public List<ImageRuleRefResultDto> listByPersonId(String var1) throws DataAccessException;
public List<ImageRuleRefResultDto> listByLabelId(String var1) throws DataAccessException;
public List<ImageRuleRefResultDto> listByOrgId(String var1) throws DataAccessException;
public List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto var1) throws DataAccessException;
public List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto var1) throws DataAccessException;
public List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto var1) throws DataAccessException;
public List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> var1) throws DataAccessException;
public List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto var1) throws DataAccessException;
public List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto var1) throws DataAccessException;
public List<String> listPersonDelByZoneId(String var1) throws DataAccessException;
public List<String> listPersonDelByPersonId(String var1) throws DataAccessException;
public ImageRuleRefResultDto getDefaultByZoneId(String var1) throws DataAccessException;
public ImageRuleRefResultDto getById(String var1) throws DataAccessException;
public String getByRuleName(String var1, String var2) throws DataAccessException;
public ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> var1, String var2) throws DataAccessException;
public ImageRuleRefResultDto getDelByPersonIdAndZoneId(String var1, String var2) throws DataAccessException;
public List<String> countPersonIdByZoneId(String var1) throws DataAccessException;
public Boolean insert(ImageRuleRefAddDto var1) throws DataAccessException;
public Boolean insertList(List<ImageRuleRefAddDto> var1) throws DataAccessException;
public Boolean deleteById(String var1) throws DataAccessException;
public Boolean deleteByZoneIdAndName(String var1, String var2) throws DataAccessException;
public Boolean deleteByPersonIdsIsDel(List<String> var1, String var2) throws DataAccessException;
public Boolean deleteByPersonId(String var1, String var2) throws DataAccessException;
public Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto var1) throws DataAccessException;
}
@@ -0,0 +1,107 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassRuleAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private String businessId;
private String name;
private String zoneId;
private String zoneName;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
private String imageStoreId;
private Integer isDefault;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getZoneName() {
return this.zoneName;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getValidDateCron() {
return this.validDateCron;
}
public void setValidDateCron(String validDateCron) {
this.validDateCron = validDateCron;
}
public String getValidDateJson() {
return this.validDateJson;
}
public void setValidDateJson(String validDateJson) {
this.validDateJson = validDateJson;
}
public Long getBeginDate() {
return this.beginDate;
}
public void setBeginDate(Long beginDate) {
this.beginDate = beginDate;
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public Integer getIsDefault() {
return this.isDefault;
}
public void setIsDefault(Integer isDefault) {
this.isDefault = isDefault;
}
}
@@ -0,0 +1,67 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPassRuleDeleteDto
implements Serializable {
private static final long serialVersionUID = -6255045079103336579L;
private String businessId;
private String deviceId;
private List<String> ids;
private String zoneId;
private String orgId;
private String labelId;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
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;
}
}
@@ -0,0 +1,80 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassRuleEditDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -9212159235737030371L;
private String businessId;
private String name;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
private String imageStoreId;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getValidDateCron() {
return this.validDateCron;
}
public void setValidDateCron(String validDateCron) {
this.validDateCron = validDateCron;
}
public String getValidDateJson() {
return this.validDateJson;
}
public void setValidDateJson(String validDateJson) {
this.validDateJson = validDateJson;
}
public Long getBeginDate() {
return this.beginDate;
}
public void setBeginDate(Long beginDate) {
this.beginDate = beginDate;
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
}
@@ -0,0 +1,63 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.page.CloudwalkBasePageForm
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
import java.io.Serializable;
import java.util.List;
public class AcsPassRuleImageDto
extends CloudwalkBasePageForm
implements Serializable {
private static final long serialVersionUID = -52687427633888290L;
private List<String> imageStoreIds;
private String businessId;
private String personId;
private List<String> includeOrganizations;
private List<String> includeLabels;
public List<String> getImageStoreIds() {
return this.imageStoreIds;
}
public void setImageStoreIds(List<String> imageStoreIds) {
this.imageStoreIds = imageStoreIds;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public List<String> getIncludeOrganizations() {
return this.includeOrganizations;
}
public void setIncludeOrganizations(List<String> includeOrganizations) {
this.includeOrganizations = includeOrganizations;
}
public List<String> getIncludeLabels() {
return this.includeLabels;
}
public void setIncludeLabels(List<String> includeLabels) {
this.includeLabels = includeLabels;
}
}
@@ -0,0 +1,35 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
public class AcsPassRuleImageResultDto {
private String zoneId;
private String zoneName;
private String imageStoreId;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getZoneName() {
return this.zoneName;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
}
@@ -0,0 +1,35 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassRuleIsDefaultDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private String businessId;
private String zoneId;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
}
@@ -0,0 +1,35 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
public class AcsPassRuleLabelResultDto {
private String zoneId;
private String zoneName;
private String labelId;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getZoneName() {
return this.zoneName;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
}
}
@@ -0,0 +1,49 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPassRulePersonListDto
implements Serializable {
private static final long serialVersionUID = -52687427633888290L;
private String businessId;
private List<String> personIds;
private List<String> includeOrganizations;
private List<String> includeLabels;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public List<String> getPersonIds() {
return this.personIds;
}
public void setPersonIds(List<String> personIds) {
this.personIds = personIds;
}
public List<String> getIncludeOrganizations() {
return this.includeOrganizations;
}
public void setIncludeOrganizations(List<String> includeOrganizations) {
this.includeOrganizations = includeOrganizations;
}
public List<String> getIncludeLabels() {
return this.includeLabels;
}
public void setIncludeLabels(List<String> includeLabels) {
this.includeLabels = includeLabels;
}
}
@@ -0,0 +1,29 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import java.util.List;
public class AcsPassRulePersonListResultDto {
private String personId;
private List<AcsPassRuleImageResultDto> zoneList;
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public List<AcsPassRuleImageResultDto> getZoneList() {
return this.zoneList;
}
public void setZoneList(List<AcsPassRuleImageResultDto> zoneList) {
this.zoneList = zoneList;
}
}
@@ -0,0 +1,76 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPassRuleQueryDto
implements Serializable {
private static final long serialVersionUID = 7280163220219331909L;
private String id;
private String zoneId;
private String businessId;
private String imageStoreId;
private List<String> imageStoreIds;
private List<String> ids;
private List<String> zoneIds;
public List<String> getZoneIds() {
return this.zoneIds;
}
public void setZoneIds(List<String> zoneIds) {
this.zoneIds = zoneIds;
}
public List<String> getIds() {
return this.ids;
}
public void setIds(List<String> ids) {
this.ids = ids;
}
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public List<String> getImageStoreIds() {
return this.imageStoreIds;
}
public void setImageStoreIds(List<String> imageStoreIds) {
this.imageStoreIds = imageStoreIds;
}
}
@@ -0,0 +1,107 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassRuleResultDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -8387459232695360257L;
private String businessId;
private String zoneId;
private String zoneName;
private String name;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
private String imageStoreId;
private Integer isDefault;
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getValidDateCron() {
return this.validDateCron;
}
public void setValidDateCron(String validDateCron) {
this.validDateCron = validDateCron;
}
public String getValidDateJson() {
return this.validDateJson;
}
public void setValidDateJson(String validDateJson) {
this.validDateJson = validDateJson;
}
public Long getBeginDate() {
return this.beginDate;
}
public void setBeginDate(Long beginDate) {
this.beginDate = beginDate;
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public String getZoneName() {
return this.zoneName;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public Integer getIsDefault() {
return this.isDefault;
}
public void setIsDefault(Integer isDefault) {
this.isDefault = isDefault;
}
}
@@ -0,0 +1,250 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class ImageRuleRefAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private String businessId;
private String name;
private String zoneId;
private String zoneName;
private String personId;
private String includeLabels;
private String includeOrganizations;
private String excludeLabels;
private Long startTime;
private Long endTime;
private Integer isDefault;
private String parentRule;
private Integer personDelete;
public String getBusinessId() {
return this.businessId;
}
public String getName() {
return this.name;
}
public String getZoneId() {
return this.zoneId;
}
public String getZoneName() {
return this.zoneName;
}
public String getPersonId() {
return this.personId;
}
public String getIncludeLabels() {
return this.includeLabels;
}
public String getIncludeOrganizations() {
return this.includeOrganizations;
}
public String getExcludeLabels() {
return this.excludeLabels;
}
public Long getStartTime() {
return this.startTime;
}
public Long getEndTime() {
return this.endTime;
}
public Integer getIsDefault() {
return this.isDefault;
}
public String getParentRule() {
return this.parentRule;
}
public Integer getPersonDelete() {
return this.personDelete;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public void setName(String name) {
this.name = name;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public void setIncludeLabels(String includeLabels) {
this.includeLabels = includeLabels;
}
public void setIncludeOrganizations(String includeOrganizations) {
this.includeOrganizations = includeOrganizations;
}
public void setExcludeLabels(String excludeLabels) {
this.excludeLabels = excludeLabels;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public void setIsDefault(Integer isDefault) {
this.isDefault = isDefault;
}
public void setParentRule(String parentRule) {
this.parentRule = parentRule;
}
public void setPersonDelete(Integer personDelete) {
this.personDelete = personDelete;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof ImageRuleRefAddDto)) {
return false;
}
ImageRuleRefAddDto other = (ImageRuleRefAddDto)o;
if (!other.canEqual(this)) {
return false;
}
String this$businessId = this.getBusinessId();
String other$businessId = other.getBusinessId();
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
return false;
}
String this$name = this.getName();
String other$name = other.getName();
if (this$name == null ? other$name != null : !this$name.equals(other$name)) {
return false;
}
String this$zoneId = this.getZoneId();
String other$zoneId = other.getZoneId();
if (this$zoneId == null ? other$zoneId != null : !this$zoneId.equals(other$zoneId)) {
return false;
}
String this$zoneName = this.getZoneName();
String other$zoneName = other.getZoneName();
if (this$zoneName == null ? other$zoneName != null : !this$zoneName.equals(other$zoneName)) {
return false;
}
String this$personId = this.getPersonId();
String other$personId = other.getPersonId();
if (this$personId == null ? other$personId != null : !this$personId.equals(other$personId)) {
return false;
}
String this$includeLabels = this.getIncludeLabels();
String other$includeLabels = other.getIncludeLabels();
if (this$includeLabels == null ? other$includeLabels != null : !this$includeLabels.equals(other$includeLabels)) {
return false;
}
String this$includeOrganizations = this.getIncludeOrganizations();
String other$includeOrganizations = other.getIncludeOrganizations();
if (this$includeOrganizations == null ? other$includeOrganizations != null : !this$includeOrganizations.equals(other$includeOrganizations)) {
return false;
}
String this$excludeLabels = this.getExcludeLabels();
String other$excludeLabels = other.getExcludeLabels();
if (this$excludeLabels == null ? other$excludeLabels != null : !this$excludeLabels.equals(other$excludeLabels)) {
return false;
}
Long this$startTime = this.getStartTime();
Long other$startTime = other.getStartTime();
if (this$startTime == null ? other$startTime != null : !((Object)this$startTime).equals(other$startTime)) {
return false;
}
Long this$endTime = this.getEndTime();
Long other$endTime = other.getEndTime();
if (this$endTime == null ? other$endTime != null : !((Object)this$endTime).equals(other$endTime)) {
return false;
}
Integer this$isDefault = this.getIsDefault();
Integer other$isDefault = other.getIsDefault();
if (this$isDefault == null ? other$isDefault != null : !((Object)this$isDefault).equals(other$isDefault)) {
return false;
}
String this$parentRule = this.getParentRule();
String other$parentRule = other.getParentRule();
if (this$parentRule == null ? other$parentRule != null : !this$parentRule.equals(other$parentRule)) {
return false;
}
Integer this$personDelete = this.getPersonDelete();
Integer other$personDelete = other.getPersonDelete();
return !(this$personDelete == null ? other$personDelete != null : !((Object)this$personDelete).equals(other$personDelete));
}
protected boolean canEqual(Object other) {
return other instanceof ImageRuleRefAddDto;
}
public int hashCode() {
int PRIME = 59;
int result = 1;
String $businessId = this.getBusinessId();
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
String $name = this.getName();
result = result * 59 + ($name == null ? 43 : $name.hashCode());
String $zoneId = this.getZoneId();
result = result * 59 + ($zoneId == null ? 43 : $zoneId.hashCode());
String $zoneName = this.getZoneName();
result = result * 59 + ($zoneName == null ? 43 : $zoneName.hashCode());
String $personId = this.getPersonId();
result = result * 59 + ($personId == null ? 43 : $personId.hashCode());
String $includeLabels = this.getIncludeLabels();
result = result * 59 + ($includeLabels == null ? 43 : $includeLabels.hashCode());
String $includeOrganizations = this.getIncludeOrganizations();
result = result * 59 + ($includeOrganizations == null ? 43 : $includeOrganizations.hashCode());
String $excludeLabels = this.getExcludeLabels();
result = result * 59 + ($excludeLabels == null ? 43 : $excludeLabels.hashCode());
Long $startTime = this.getStartTime();
result = result * 59 + ($startTime == null ? 43 : ((Object)$startTime).hashCode());
Long $endTime = this.getEndTime();
result = result * 59 + ($endTime == null ? 43 : ((Object)$endTime).hashCode());
Integer $isDefault = this.getIsDefault();
result = result * 59 + ($isDefault == null ? 43 : ((Object)$isDefault).hashCode());
String $parentRule = this.getParentRule();
result = result * 59 + ($parentRule == null ? 43 : $parentRule.hashCode());
Integer $personDelete = this.getPersonDelete();
result = result * 59 + ($personDelete == null ? 43 : ((Object)$personDelete).hashCode());
return result;
}
public String toString() {
return "ImageRuleRefAddDto(businessId=" + this.getBusinessId() + ", name=" + this.getName() + ", zoneId=" + this.getZoneId() + ", zoneName=" + this.getZoneName() + ", personId=" + this.getPersonId() + ", includeLabels=" + this.getIncludeLabels() + ", includeOrganizations=" + this.getIncludeOrganizations() + ", excludeLabels=" + this.getExcludeLabels() + ", startTime=" + this.getStartTime() + ", endTime=" + this.getEndTime() + ", isDefault=" + this.getIsDefault() + ", parentRule=" + this.getParentRule() + ", personDelete=" + this.getPersonDelete() + ")";
}
}
@@ -0,0 +1,171 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.passrule.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
import java.util.List;
public class ImageRuleRefListResult
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private String businessId;
private String name;
private String zoneId;
private String zoneName;
private String personId;
private List<String> includeLabels;
private List<String> includeOrganizations;
private List<String> excludeLabels;
public String getBusinessId() {
return this.businessId;
}
public String getName() {
return this.name;
}
public String getZoneId() {
return this.zoneId;
}
public String getZoneName() {
return this.zoneName;
}
public String getPersonId() {
return this.personId;
}
public List<String> getIncludeLabels() {
return this.includeLabels;
}
public List<String> getIncludeOrganizations() {
return this.includeOrganizations;
}
public List<String> getExcludeLabels() {
return this.excludeLabels;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public void setName(String name) {
this.name = name;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public void setIncludeLabels(List<String> includeLabels) {
this.includeLabels = includeLabels;
}
public void setIncludeOrganizations(List<String> includeOrganizations) {
this.includeOrganizations = includeOrganizations;
}
public void setExcludeLabels(List<String> excludeLabels) {
this.excludeLabels = excludeLabels;
}
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof ImageRuleRefListResult)) {
return false;
}
ImageRuleRefListResult other = (ImageRuleRefListResult)o;
if (!other.canEqual(this)) {
return false;
}
String this$businessId = this.getBusinessId();
String other$businessId = other.getBusinessId();
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
return false;
}
String this$name = this.getName();
String other$name = other.getName();
if (this$name == null ? other$name != null : !this$name.equals(other$name)) {
return false;
}
String this$zoneId = this.getZoneId();
String other$zoneId = other.getZoneId();
if (this$zoneId == null ? other$zoneId != null : !this$zoneId.equals(other$zoneId)) {
return false;
}
String this$zoneName = this.getZoneName();
String other$zoneName = other.getZoneName();
if (this$zoneName == null ? other$zoneName != null : !this$zoneName.equals(other$zoneName)) {
return false;
}
String this$personId = this.getPersonId();
String other$personId = other.getPersonId();
if (this$personId == null ? other$personId != null : !this$personId.equals(other$personId)) {
return false;
}
List<String> this$includeLabels = this.getIncludeLabels();
List<String> other$includeLabels = other.getIncludeLabels();
if (this$includeLabels == null ? other$includeLabels != null : !((Object)this$includeLabels).equals(other$includeLabels)) {
return false;
}
List<String> this$includeOrganizations = this.getIncludeOrganizations();
List<String> other$includeOrganizations = other.getIncludeOrganizations();
if (this$includeOrganizations == null ? other$includeOrganizations != null : !((Object)this$includeOrganizations).equals(other$includeOrganizations)) {
return false;
}
List<String> this$excludeLabels = this.getExcludeLabels();
List<String> other$excludeLabels = other.getExcludeLabels();
return !(this$excludeLabels == null ? other$excludeLabels != null : !((Object)this$excludeLabels).equals(other$excludeLabels));
}
protected boolean canEqual(Object other) {
return other instanceof ImageRuleRefListResult;
}
public int hashCode() {
int PRIME = 59;
int result = 1;
String $businessId = this.getBusinessId();
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
String $name = this.getName();
result = result * 59 + ($name == null ? 43 : $name.hashCode());
String $zoneId = this.getZoneId();
result = result * 59 + ($zoneId == null ? 43 : $zoneId.hashCode());
String $zoneName = this.getZoneName();
result = result * 59 + ($zoneName == null ? 43 : $zoneName.hashCode());
String $personId = this.getPersonId();
result = result * 59 + ($personId == null ? 43 : $personId.hashCode());
List<String> $includeLabels = this.getIncludeLabels();
result = result * 59 + ($includeLabels == null ? 43 : ((Object)$includeLabels).hashCode());
List<String> $includeOrganizations = this.getIncludeOrganizations();
result = result * 59 + ($includeOrganizations == null ? 43 : ((Object)$includeOrganizations).hashCode());
List<String> $excludeLabels = this.getExcludeLabels();
result = result * 59 + ($excludeLabels == null ? 43 : ((Object)$excludeLabels).hashCode());
return result;
}
public String toString() {
return "ImageRuleRefListResult(businessId=" + this.getBusinessId() + ", name=" + this.getName() + ", zoneId=" + this.getZoneId() + ", zoneName=" + this.getZoneName() + ", personId=" + this.getPersonId() + ", includeLabels=" + this.getIncludeLabels() + ", includeOrganizations=" + this.getIncludeOrganizations() + ", excludeLabels=" + this.getExcludeLabels() + ")";
}
}
@@ -0,0 +1,147 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.dto;
import java.io.Serializable;
public class ImageRuleRefResultDto
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private String id;
private Long createTime;
private Long lastUpdateTime;
private String businessId;
private String name;
private String zoneId;
private String zoneName;
private String personId;
private String includeLabels;
private String includeOrganizations;
private String excludeLabels;
private Long startTime;
private Long endTime;
private Integer isDefault;
private String parentRule;
public String getId() {
return this.id;
}
public Long getCreateTime() {
return this.createTime;
}
public Long getLastUpdateTime() {
return this.lastUpdateTime;
}
public String getBusinessId() {
return this.businessId;
}
public String getName() {
return this.name;
}
public String getZoneId() {
return this.zoneId;
}
public String getZoneName() {
return this.zoneName;
}
public String getPersonId() {
return this.personId;
}
public String getIncludeLabels() {
return this.includeLabels;
}
public String getIncludeOrganizations() {
return this.includeOrganizations;
}
public String getExcludeLabels() {
return this.excludeLabels;
}
public Long getStartTime() {
return this.startTime;
}
public Long getEndTime() {
return this.endTime;
}
public Integer getIsDefault() {
return this.isDefault;
}
public String getParentRule() {
return this.parentRule;
}
public void setId(String id) {
this.id = id;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public void setLastUpdateTime(Long lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public void setName(String name) {
this.name = name;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public void setZoneName(String zoneName) {
this.zoneName = zoneName;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public void setIncludeLabels(String includeLabels) {
this.includeLabels = includeLabels;
}
public void setIncludeOrganizations(String includeOrganizations) {
this.includeOrganizations = includeOrganizations;
}
public void setExcludeLabels(String excludeLabels) {
this.excludeLabels = excludeLabels;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public void setIsDefault(Integer isDefault) {
this.isDefault = isDefault;
}
public void setParentRule(String parentRule) {
this.parentRule = parentRule;
}
}
@@ -0,0 +1,102 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.cloud.utils.BeanCopyUtils
* com.github.pagehelper.Page
* com.github.pagehelper.PageHelper
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.passrule.impl;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.cloud.utils.BeanCopyUtils;
import cn.cloudwalk.elevator.passrule.dao.AcsPassRuleDao;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleIsDefaultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto;
import cn.cloudwalk.elevator.passrule.mapper.AcsPassRuleMapper;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import java.util.Collection;
import java.util.List;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
@Repository
public class AcsPassRuleDaoImpl
implements AcsPassRuleDao {
@Resource
private AcsPassRuleMapper acsPassRuleMapper;
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public Integer insert(AcsPassRuleAddDto dto) {
return this.acsPassRuleMapper.insert(dto);
}
@Override
public Integer update(AcsPassRuleEditDto dto) {
return this.acsPassRuleMapper.update(dto);
}
@Override
public Integer delete(AcsPassRuleDeleteDto dto) {
return this.acsPassRuleMapper.delete(dto);
}
@Override
public CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) {
PageHelper.startPage((int)page.getCurrentPage(), (int)page.getPageSize());
Page result = (Page)this.acsPassRuleMapper.list(dto);
return new CloudwalkPageAble((Collection)BeanCopyUtils.copy((Collection)result.getResult(), AcsPassRuleResultDto.class), page, result.getTotal());
}
@Override
public List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto dto) throws DataAccessException {
try {
return this.acsPassRuleMapper.list(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u7d27\u901a\u884c\u89c4\u5219\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto dto) throws DataAccessException {
try {
return this.acsPassRuleMapper.getIsDefaultByZoneId(dto);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u697c\u5c42id\u83b7\u53d6\u9ed8\u8ba4\u56fe\u5e93id\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto dto) throws DataAccessException {
try {
return this.acsPassRuleMapper.listByImageId(dto);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u56fe\u5e93id\u96c6\u5408\u67e5\u8be2\u5bf9\u5e94\u697c\u5c42\u4fe1\u606f\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,186 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.cloud.utils.BeanCopyUtils
* com.github.pagehelper.Page
* com.github.pagehelper.PageHelper
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.passrule.impl;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.cloud.utils.BeanCopyUtils;
import cn.cloudwalk.elevator.passrule.dao.ImageRuleRefDao;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto;
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto;
import cn.cloudwalk.elevator.passrule.mapper.ImageRuleRefMapper;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import java.util.Collection;
import java.util.List;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
@Repository
public class ImageRuleRefDaoImpl
implements ImageRuleRefDao {
@Resource
private ImageRuleRefMapper imageRuleRefMapper;
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) throws DataAccessException {
PageHelper.startPage((int)page.getCurrentPage(), (int)page.getPageSize());
Page result = (Page)this.imageRuleRefMapper.page(dto);
return new CloudwalkPageAble((Collection)BeanCopyUtils.copy((Collection)result.getResult(), ImageRuleRefResultDto.class), page, result.getTotal());
}
@Override
public List<String> listRuleByZoneIdExtDefault(String zoneId) {
return this.imageRuleRefMapper.listRuleByZoneIdExtDefault(zoneId);
}
@Override
public List<ImageRuleRefResultDto> listByParentRule(List<String> parentRuleIds) {
return this.imageRuleRefMapper.listByParentRule(parentRuleIds);
}
@Override
public List<ImageRuleRefResultDto> listByPersonId(String personId) throws DataAccessException {
return this.imageRuleRefMapper.listByPersonId(personId);
}
@Override
public List<ImageRuleRefResultDto> listByLabelId(String labelId) throws DataAccessException {
return this.imageRuleRefMapper.listByLabelId(labelId);
}
@Override
public List<ImageRuleRefResultDto> listByOrgId(String orgId) throws DataAccessException {
return this.imageRuleRefMapper.listByOrgId(orgId);
}
@Override
public List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByPersonInfo(dto);
}
@Override
public List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByRestructure(dto);
}
@Override
public List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listFloorsByRestructure(dto);
}
@Override
public List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> zoneIds) throws DataAccessException {
return this.imageRuleRefMapper.listZoneInfoByIds(zoneIds);
}
@Override
public List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByNotZoneIds(dto);
}
@Override
public List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByPersonList(dto);
}
@Override
public List<String> listPersonDelByZoneId(String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.listPersonDelByZoneId(zoneId);
}
@Override
public List<String> listPersonDelByPersonId(String personId) throws DataAccessException {
return this.imageRuleRefMapper.listPersonDelByPersonId(personId);
}
@Override
public ImageRuleRefResultDto getDefaultByZoneId(String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getDefaultByZoneId(zoneId);
}
@Override
public ImageRuleRefResultDto getById(String id) throws DataAccessException {
return this.imageRuleRefMapper.getById(id);
}
@Override
public String getByRuleName(String ruleName, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getByRuleName(ruleName, zoneId);
}
@Override
public ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getByPersonIdAndZoneId(personId, zoneId);
}
@Override
public ImageRuleRefResultDto getDelByPersonIdAndZoneId(String personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getDelByPersonIdAndZoneId(personId, zoneId);
}
@Override
public List<String> countPersonIdByZoneId(String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.countPersonIdByZoneId(zoneId);
}
@Override
public Boolean insert(ImageRuleRefAddDto dto) {
return this.imageRuleRefMapper.insert(dto);
}
@Override
public Boolean insertList(List<ImageRuleRefAddDto> insertList) throws DataAccessException {
return this.imageRuleRefMapper.insertList(insertList);
}
@Override
public Boolean deleteById(String id) throws DataAccessException {
this.imageRuleRefMapper.deleteById(id);
this.imageRuleRefMapper.deleteByParentRule(id);
return true;
}
@Override
public Boolean deleteByZoneIdAndName(String zoneId, String oldName) throws DataAccessException {
return this.imageRuleRefMapper.deleteByZoneIdAndName(zoneId, oldName);
}
@Override
public Boolean deleteByPersonIdsIsDel(List<String> personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.deleteByPersonIdsIsDel(personId, zoneId);
}
@Override
public Boolean deleteByPersonId(String personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.deleteByPersonId(personId, zoneId);
}
@Override
public Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto dto) throws DataAccessException {
return this.imageRuleRefMapper.deleteByOrgAndLabel(dto);
}
}
@@ -0,0 +1,29 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.passrule.mapper;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleIsDefaultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto;
import java.util.List;
public interface AcsPassRuleMapper {
public Integer insert(AcsPassRuleAddDto var1);
public Integer update(AcsPassRuleEditDto var1);
public Integer delete(AcsPassRuleDeleteDto var1);
public List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto var1);
public String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto var1);
public List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto var1);
}
@@ -0,0 +1,77 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.apache.ibatis.annotations.Param
*/
package cn.cloudwalk.elevator.passrule.mapper;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto;
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto;
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ImageRuleRefMapper {
public List<ImageRuleRefResultDto> page(AcsPassRuleQueryDto var1);
public List<String> listRuleByZoneIdExtDefault(String var1);
public List<String> listPersonDelByZoneId(@Param(value="zoneId") String var1);
public List<String> listPersonDelByPersonId(@Param(value="personId") String var1);
public List<ImageRuleRefResultDto> listByParentRule(@Param(value="parentRuleIds") List<String> var1);
public List<ImageRuleRefResultDto> listByPersonId(@Param(value="personId") String var1);
public List<ImageRuleRefResultDto> listByLabelId(@Param(value="labelId") String var1);
public List<ImageRuleRefResultDto> listByOrgId(@Param(value="orgId") String var1);
public List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto var1);
public List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto var1);
public List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto var1);
public List<AcsPassRuleImageResultDto> listZoneInfoByIds(@Param(value="zoneIds") List<String> var1);
public List<AcsPassRuleImageResultDto> listByNotZoneIds(@Param(value="request") AcsPassRuleQueryDto var1);
public List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto var1);
public ImageRuleRefResultDto getDefaultByZoneId(String var1);
public ImageRuleRefResultDto getById(String var1);
public String getByRuleName(@Param(value="ruleName") String var1, @Param(value="zoneId") String var2);
public ImageRuleRefResultDto getByPersonIdAndZoneId(@Param(value="personIds") List<String> var1, @Param(value="zoneId") String var2);
public ImageRuleRefResultDto getDelByPersonIdAndZoneId(@Param(value="personId") String var1, @Param(value="zoneId") String var2);
public List<String> countPersonIdByZoneId(String var1);
public Boolean insert(ImageRuleRefAddDto var1);
public Boolean insertList(@Param(value="dtoList") List<ImageRuleRefAddDto> var1);
public Boolean deleteByZoneIdAndName(String var1, String var2);
public Boolean deleteById(String var1);
public Boolean deleteByParentRule(String var1);
public Boolean deleteByPersonIdsIsDel(@Param(value="personIds") List<String> var1, @Param(value="zoneId") String var2);
public Boolean deleteByPersonId(@Param(value="personId") String var1, @Param(value="zoneId") String var2);
public Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto var1);
}
@@ -0,0 +1,43 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
*/
package cn.cloudwalk.elevator.record.dao;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorPageRequestInfoResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO;
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO;
import java.util.List;
public interface AcsElevatorRecordDao {
public Integer add(AcsElevatorRecordAddDTO var1) throws DataAccessException;
public int update(AcsOpenDoorRecordEditDTO var1) throws DataAccessException;
public CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO var1, CloudwalkPageInfo var2) throws DataAccessException;
public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO var1) throws DataAccessException;
public AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String var1) throws DataAccessException;
public Integer analyseCount(AcsElevatorQueryCountDTO var1) throws DataAccessException;
public List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO var1) throws DataAccessException;
public List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO var1) throws DataAccessException;
}
@@ -0,0 +1,8 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dao;
public interface AcsPersonInfoDao {
}
@@ -0,0 +1,22 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
*/
package cn.cloudwalk.elevator.record.dao;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO;
import java.util.List;
public interface AcsRecogRecordDao {
public Integer add(AcsRecogRecordAddDTO var1) throws DataAccessException;
public List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO var1) throws DataAccessException;
public AcsRecogRecordResultDTO getByPersonId(String var1) throws DataAccessException;
}
@@ -0,0 +1,21 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
*/
package cn.cloudwalk.elevator.record.dao;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO;
public interface SendRecordTimeDao {
public SendRecordTimeResultDTO getByType(Integer var1) throws DataAccessException;
public Integer add(SendRecordTimeAddDTO var1) throws DataAccessException;
public Integer update(SendRecordTimeEditDTO var1) throws DataAccessException;
}
@@ -0,0 +1,30 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
public class AcsElevatorAnalyseCycleBusinessResultDTO {
private String businessId;
private Integer count;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public String toString() {
return "AcsElevatorAnalyseCycleBusinessResultDTO{businessId='" + this.businessId + '\'' + ", count=" + this.count + '}';
}
}
@@ -0,0 +1,37 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.util.List;
public class AcsElevatorPageRequestInfoResultDTO {
private List<String> srcFloorList;
private List<String> destFloorList;
private List<String> dispatchElevatorNoList;
public List<String> getSrcFloorList() {
return this.srcFloorList;
}
public void setSrcFloorList(List<String> srcFloorList) {
this.srcFloorList = srcFloorList;
}
public List<String> getDestFloorList() {
return this.destFloorList;
}
public void setDestFloorList(List<String> destFloorList) {
this.destFloorList = destFloorList;
}
public List<String> getDispatchElevatorNoList() {
return this.dispatchElevatorNoList;
}
public void setDispatchElevatorNoList(List<String> dispatchElevatorNoList) {
this.dispatchElevatorNoList = dispatchElevatorNoList;
}
}
@@ -0,0 +1,53 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
public class AcsElevatorQueryCountDTO {
private Long startTime;
private Long endTime;
private Integer recordResult;
private String businessId;
private String srcFloor;
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
}
@@ -0,0 +1,255 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.record.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorRecordAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeId;
private String deviceTypeName;
private String districtId;
private String areaId;
private String openDoorType;
private String operateName;
private String faceImagePath;
private String panoramaImagePath;
private Integer recordResult;
private String recognitionNo;
private Long recognitionTime;
private String logId;
private String recognitionFaceId;
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private Long dispatchElevatorTime;
private Integer isVisitor;
private String interviewee;
private String personCode;
private String orgId;
private String orgName;
private static final long serialVersionUID = 1L;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceTypeId() {
return this.deviceTypeId;
}
public void setDeviceTypeId(String deviceTypeId) {
this.deviceTypeId = deviceTypeId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public String getRecognitionFaceId() {
return this.recognitionFaceId;
}
public void setRecognitionFaceId(String recognitionFaceId) {
this.recognitionFaceId = recognitionFaceId;
}
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public Long getDispatchElevatorTime() {
return this.dispatchElevatorTime;
}
public void setDispatchElevatorTime(Long dispatchElevatorTime) {
this.dispatchElevatorTime = dispatchElevatorTime;
}
public Integer getIsVisitor() {
return this.isVisitor;
}
public void setIsVisitor(Integer isVisitor) {
this.isVisitor = isVisitor;
}
public String getInterviewee() {
return this.interviewee;
}
public void setInterviewee(String interviewee) {
this.interviewee = interviewee;
}
public String getPersonCode() {
return this.personCode;
}
public void setPersonCode(String personCode) {
this.personCode = personCode;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getOrgName() {
return this.orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public String toString() {
return "AcsElevatorRecordAddDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,156 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
import java.util.List;
public class AcsElevatorRecordDetailQueryDTO
implements Serializable {
private String businessId;
private Long startTime;
private Long endTime;
private String personName;
private String personId;
private List<String> districtIds;
private List<String> areaIds;
private List<String> deviceIds;
private String openDoorTypeCode;
private Integer recordResult;
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private String personCode;
private String orgId;
private Integer isVisitor;
public Integer getIsVisitor() {
return this.isVisitor;
}
public void setIsVisitor(Integer isVisitor) {
this.isVisitor = isVisitor;
}
public String getPersonCode() {
return this.personCode;
}
public void setPersonCode(String personCode) {
this.personCode = personCode;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public List<String> getDistrictIds() {
return this.districtIds;
}
public void setDistrictIds(List<String> districtIds) {
this.districtIds = districtIds;
}
public List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public List<String> getAreaIds() {
return this.areaIds;
}
public void setAreaIds(List<String> areaIds) {
this.areaIds = areaIds;
}
public String getOpenDoorTypeCode() {
return this.openDoorTypeCode;
}
public void setOpenDoorTypeCode(String openDoorTypeCode) {
this.openDoorTypeCode = openDoorTypeCode;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
}
@@ -0,0 +1,372 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.elevator.annontation.DavinciPic
*/
package cn.cloudwalk.elevator.record.dto;
import cn.cloudwalk.elevator.annontation.DavinciPic;
import java.io.Serializable;
import java.math.BigDecimal;
public class AcsElevatorRecordDetailQueryResultDTO
implements Serializable {
private String openDoorId;
private String panoramaImageRecog;
private String panoramaImageOpen;
private String faceImage;
@DavinciPic
private String registerImage;
private String personName;
private long recognitionTime;
private String districtId;
private String areaId;
private String deviceTypeName;
private String deviceId;
private String deviceCode;
private String deviceName;
private String openDoorType;
private String operateName;
private BigDecimal score;
private Integer recordResult;
private String recognitionNo;
private String recognitionFaceId;
private String personId;
private Integer isVisitor;
private String interviewee;
private String regRecordId;
private BigDecimal threshold;
private Integer recognitionResult;
private String groupId;
private String faceId;
private BigDecimal qualityScore;
private String logId;
private BigDecimal tempScore;
private BigDecimal maskScore;
private BigDecimal tempThreshold;
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private Long dispatchElevatorTime;
private String personCode;
private String orgId;
private String orgName;
public String getPersonCode() {
return this.personCode;
}
public void setPersonCode(String personCode) {
this.personCode = personCode;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getOrgName() {
return this.orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public String getOpenDoorId() {
return this.openDoorId;
}
public void setOpenDoorId(String openDoorId) {
this.openDoorId = openDoorId;
}
public String getPanoramaImageRecog() {
return this.panoramaImageRecog;
}
public void setPanoramaImageRecog(String panoramaImageRecog) {
this.panoramaImageRecog = panoramaImageRecog;
}
public String getPanoramaImageOpen() {
return this.panoramaImageOpen;
}
public void setPanoramaImageOpen(String panoramaImageOpen) {
this.panoramaImageOpen = panoramaImageOpen;
}
public String getFaceImage() {
return this.faceImage;
}
public void setFaceImage(String faceImage) {
this.faceImage = faceImage;
}
public String getRegisterImage() {
return this.registerImage;
}
public void setRegisterImage(String registerImage) {
this.registerImage = registerImage;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public BigDecimal getScore() {
return this.score;
}
public void setScore(BigDecimal score) {
this.score = score;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public String getRegRecordId() {
return this.regRecordId;
}
public void setRegRecordId(String regRecordId) {
this.regRecordId = regRecordId;
}
public BigDecimal getThreshold() {
return this.threshold;
}
public void setThreshold(BigDecimal threshold) {
this.threshold = threshold;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public BigDecimal getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(BigDecimal qualityScore) {
this.qualityScore = qualityScore;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public BigDecimal getTempScore() {
return this.tempScore;
}
public void setTempScore(BigDecimal tempScore) {
this.tempScore = tempScore;
}
public BigDecimal getMaskScore() {
return this.maskScore;
}
public void setMaskScore(BigDecimal maskScore) {
this.maskScore = maskScore;
}
public BigDecimal getTempThreshold() {
return this.tempThreshold;
}
public void setTempThreshold(BigDecimal tempThreshold) {
this.tempThreshold = tempThreshold;
}
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public Long getDispatchElevatorTime() {
return this.dispatchElevatorTime;
}
public void setDispatchElevatorTime(Long dispatchElevatorTime) {
this.dispatchElevatorTime = dispatchElevatorTime;
}
public String getRecognitionFaceId() {
return this.recognitionFaceId;
}
public void setRecognitionFaceId(String recognitionFaceId) {
this.recognitionFaceId = recognitionFaceId;
}
public Integer getIsVisitor() {
return this.isVisitor;
}
public void setIsVisitor(Integer isVisitor) {
this.isVisitor = isVisitor;
}
public String getInterviewee() {
return this.interviewee;
}
public void setInterviewee(String interviewee) {
this.interviewee = interviewee;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
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 toString() {
return "AcsElevatorRecordDetailQueryResultDTO{openDoorId='" + this.openDoorId + '\'' + ", panoramaImageRecog='" + this.panoramaImageRecog + '\'' + ", panoramaImageOpen='" + this.panoramaImageOpen + '\'' + ", faceImage='" + this.faceImage + '\'' + ", registerImage='" + this.registerImage + '\'' + ", personName='" + this.personName + '\'' + ", recognitionTime=" + this.recognitionTime + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", deviceName='" + this.deviceName + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", score=" + this.score + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", isVisitor=" + this.isVisitor + ", interviewee=" + this.interviewee + ", regRecordId='" + this.regRecordId + '\'' + ", threshold=" + this.threshold + ", recognitionResult=" + this.recognitionResult + ", groupId='" + this.groupId + '\'' + ", faceId='" + this.faceId + '\'' + ", qualityScore=" + this.qualityScore + ", logId='" + this.logId + '\'' + ", tempScore=" + this.tempScore + ", maskScore=" + this.maskScore + ", tempThreshold=" + this.tempThreshold + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,48 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
public class AcsElevatorRecordExtraDTO {
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private Long dispatchElevatorTime;
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public Long getDispatchElevatorTime() {
return this.dispatchElevatorTime;
}
public void setDispatchElevatorTime(Long dispatchElevatorTime) {
this.dispatchElevatorTime = dispatchElevatorTime;
}
public String toString() {
return "AcsElevatorRecordExtraDTO{srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,255 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.record.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsElevatorRecordQueryResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -761586737506722816L;
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private String deviceTypeId;
private String deviceTypeName;
private String districtId;
private String areaId;
private String openDoorType;
private String operateName;
private String faceImagePath;
private String panoramaImagePath;
private Integer recordResult;
private String recognitionNo;
private Long recognitionTime;
private String logId;
private String recognitionFaceId;
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private Long dispatchElevatorTime;
private Integer isVisitor;
private String interviewee;
private String personCode;
private String orgId;
private String orgName;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceTypeId() {
return this.deviceTypeId;
}
public void setDeviceTypeId(String deviceTypeId) {
this.deviceTypeId = deviceTypeId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public String getRecognitionFaceId() {
return this.recognitionFaceId;
}
public void setRecognitionFaceId(String recognitionFaceId) {
this.recognitionFaceId = recognitionFaceId;
}
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public Long getDispatchElevatorTime() {
return this.dispatchElevatorTime;
}
public void setDispatchElevatorTime(Long dispatchElevatorTime) {
this.dispatchElevatorTime = dispatchElevatorTime;
}
public Integer getIsVisitor() {
return this.isVisitor;
}
public void setIsVisitor(Integer isVisitor) {
this.isVisitor = isVisitor;
}
public String getInterviewee() {
return this.interviewee;
}
public void setInterviewee(String interviewee) {
this.interviewee = interviewee;
}
public String getPersonCode() {
return this.personCode;
}
public void setPersonCode(String personCode) {
this.personCode = personCode;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getOrgName() {
return this.orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public String toString() {
return "AcsElevatorRecordQueryResultDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,147 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.record.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsOpenDoorRecordEditDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 885170301572808321L;
private String businessId;
private String deviceId;
private String deviceCode;
private String openDoorType;
private String operateName;
private String faceImagePath;
private String panoramaImagePath;
private Integer recordResult;
private String recognitionNo;
private Long recognitionTime;
private String logId;
private String recognitionFaceId;
private Long startDay;
private Long endDay;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public String getRecognitionFaceId() {
return this.recognitionFaceId;
}
public void setRecognitionFaceId(String recognitionFaceId) {
this.recognitionFaceId = recognitionFaceId;
}
public Long getStartDay() {
return this.startDay;
}
public void setStartDay(Long startDay) {
this.startDay = startDay;
}
public Long getEndDay() {
return this.endDay;
}
public void setEndDay(Long endDay) {
this.endDay = endDay;
}
public String toString() {
return "AcsOpenDoorRecordEditDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", startDay=" + this.startDay + ", endDay=" + this.endDay + '}';
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
public class AcsOpenDoorRecordQueryDTO
implements Serializable {
private static final long serialVersionUID = 2759536962618796129L;
private String id;
private String businessId;
private Long startDay;
private Long endDay;
private Integer recordResult;
private String logId;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Long getStartDay() {
return this.startDay;
}
public void setStartDay(Long startDay) {
this.startDay = startDay;
}
public Long getEndDay() {
return this.endDay;
}
public void setEndDay(Long endDay) {
this.endDay = endDay;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
}
@@ -0,0 +1,29 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
public class AcsPersonInfoResultDTO
implements Serializable {
private String id;
private String comparePicture;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getComparePicture() {
return this.comparePicture;
}
public void setComparePicture(String comparePicture) {
this.comparePicture = comparePicture;
}
}
@@ -0,0 +1,327 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.elevator.record.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
import java.math.BigDecimal;
public class AcsRecogRecordAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private String personId;
private String personName;
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private BigDecimal threshold;
private String districtId;
private String areaId;
private String deviceTypeId;
private String deviceTypeName;
private String subDeviceId;
private String subDeviceCode;
private String subDeviceName;
private String subDeviceTypeId;
private String subDeviceTypeName;
private String registerImagePath;
private String faceImagePath;
private String panoramaImagePath;
private BigDecimal score;
private Integer recognitionResult;
private Long recognitionTime;
private String groupId;
private String faceId;
private BigDecimal qualityScore;
private String logId;
private BigDecimal tempScore;
private BigDecimal maskScore;
private BigDecimal tempThreshold;
private String cardType;
private Integer source;
private String tempImagePath;
private String remark;
private String personLabelIds;
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public BigDecimal getThreshold() {
return this.threshold;
}
public void setThreshold(BigDecimal threshold) {
this.threshold = threshold;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceTypeId() {
return this.deviceTypeId;
}
public void setDeviceTypeId(String deviceTypeId) {
this.deviceTypeId = deviceTypeId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getRegisterImagePath() {
return this.registerImagePath;
}
public void setRegisterImagePath(String registerImagePath) {
this.registerImagePath = registerImagePath;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public BigDecimal getScore() {
return this.score;
}
public void setScore(BigDecimal score) {
this.score = score;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public BigDecimal getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(BigDecimal qualityScore) {
this.qualityScore = qualityScore;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public BigDecimal getTempScore() {
return this.tempScore;
}
public void setTempScore(BigDecimal tempScore) {
this.tempScore = tempScore;
}
public BigDecimal getMaskScore() {
return this.maskScore;
}
public void setMaskScore(BigDecimal maskScore) {
this.maskScore = maskScore;
}
public BigDecimal getTempThreshold() {
return this.tempThreshold;
}
public void setTempThreshold(BigDecimal tempThreshold) {
this.tempThreshold = tempThreshold;
}
public String getCardType() {
return this.cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public Integer getSource() {
return this.source;
}
public void setSource(Integer source) {
this.source = source;
}
public String getTempImagePath() {
return this.tempImagePath;
}
public void setTempImagePath(String tempImagePath) {
this.tempImagePath = tempImagePath;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getSubDeviceCode() {
return this.subDeviceCode;
}
public void setSubDeviceCode(String subDeviceCode) {
this.subDeviceCode = subDeviceCode;
}
public String getSubDeviceName() {
return this.subDeviceName;
}
public void setSubDeviceName(String subDeviceName) {
this.subDeviceName = subDeviceName;
}
public String getSubDeviceTypeId() {
return this.subDeviceTypeId;
}
public void setSubDeviceTypeId(String subDeviceTypeId) {
this.subDeviceTypeId = subDeviceTypeId;
}
public String getSubDeviceTypeName() {
return this.subDeviceTypeName;
}
public void setSubDeviceTypeName(String subDeviceTypeName) {
this.subDeviceTypeName = subDeviceTypeName;
}
public String getPersonLabelIds() {
return this.personLabelIds;
}
public void setPersonLabelIds(String personLabelIds) {
this.personLabelIds = personLabelIds;
}
public String toString() {
return "AcsRecogRecordAddDTO{personId='" + this.personId + '\'' + ", personName='" + this.personName + '\'' + ", businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", threshold=" + this.threshold + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", subDeviceId='" + this.subDeviceId + '\'' + ", subDeviceCode='" + this.subDeviceCode + '\'' + ", subDeviceName='" + this.subDeviceName + '\'' + ", subDeviceTypeId='" + this.subDeviceTypeId + '\'' + ", subDeviceTypeName='" + this.subDeviceTypeName + '\'' + ", registerImagePath='" + this.registerImagePath + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", score=" + this.score + ", recognitionResult=" + this.recognitionResult + ", recognitionTime=" + this.recognitionTime + ", groupId='" + this.groupId + '\'' + ", faceId='" + this.faceId + '\'' + ", qualityScore=" + this.qualityScore + ", logId='" + this.logId + '\'' + ", tempScore=" + this.tempScore + ", maskScore=" + this.maskScore + ", tempThreshold=" + this.tempThreshold + ", cardType='" + this.cardType + '\'' + ", source=" + this.source + ", tempImagePath='" + this.tempImagePath + '\'' + ", remark='" + this.remark + '\'' + ", personLabelIds='" + this.personLabelIds + '\'' + '}';
}
}
@@ -0,0 +1,102 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
import java.util.List;
public class AcsRecogRecordPageDTO
implements Serializable {
private String businessId;
private Long startTime;
private Long endTime;
private String personName;
private String logId;
private List<String> districtIds;
private List<String> areaIds;
private List<String> deviceIds;
private Integer recognitionResult;
private Integer compareType;
public String getBusinessId() {
return this.businessId;
}
public Long getStartTime() {
return this.startTime;
}
public Long getEndTime() {
return this.endTime;
}
public String getPersonName() {
return this.personName;
}
public String getLogId() {
return this.logId;
}
public List<String> getDistrictIds() {
return this.districtIds;
}
public List<String> getAreaIds() {
return this.areaIds;
}
public List<String> getDeviceIds() {
return this.deviceIds;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public Integer getCompareType() {
return this.compareType;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public void setLogId(String logId) {
this.logId = logId;
}
public void setDistrictIds(List<String> districtIds) {
this.districtIds = districtIds;
}
public void setAreaIds(List<String> areaIds) {
this.areaIds = areaIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public void setCompareType(Integer compareType) {
this.compareType = compareType;
}
}
@@ -0,0 +1,382 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
import java.math.BigDecimal;
public class AcsRecogRecordResultDTO
implements Serializable {
private String id;
private String personId;
private String personName;
private String businessId;
private String deviceId;
private String deviceCode;
private String deviceName;
private BigDecimal threshold;
private String districtId;
private String areaId;
private String deviceTypeId;
private String deviceTypeName;
private String subDeviceId;
private String subDeviceCode;
private String subDeviceName;
private String subDeviceTypeId;
private String subDeviceTypeName;
private String registerImagePath;
private String faceImagePath;
private String panoramaImagePath;
private BigDecimal score;
private Integer recognitionResult;
private Long recognitionTime;
private String groupId;
private String faceId;
private BigDecimal qualityScore;
private String logId;
private BigDecimal tempScore;
private BigDecimal maskScore;
private BigDecimal tempThreshold;
private String remark;
private Long createTime;
private String createUserId;
private Long lastUpdateTime;
private String lastUpdateUserId;
private String personLabelIds;
private static final long serialVersionUID = 1L;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
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 getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public BigDecimal getThreshold() {
return this.threshold;
}
public void setThreshold(BigDecimal threshold) {
this.threshold = threshold;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceTypeId() {
return this.deviceTypeId;
}
public void setDeviceTypeId(String deviceTypeId) {
this.deviceTypeId = deviceTypeId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getRegisterImagePath() {
return this.registerImagePath;
}
public void setRegisterImagePath(String registerImagePath) {
this.registerImagePath = registerImagePath;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public BigDecimal getScore() {
return this.score;
}
public void setScore(BigDecimal score) {
this.score = score;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public BigDecimal getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(BigDecimal qualityScore) {
this.qualityScore = qualityScore;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public BigDecimal getTempScore() {
return this.tempScore;
}
public void setTempScore(BigDecimal tempScore) {
this.tempScore = tempScore;
}
public BigDecimal getMaskScore() {
return this.maskScore;
}
public void setMaskScore(BigDecimal maskScore) {
this.maskScore = maskScore;
}
public BigDecimal getTempThreshold() {
return this.tempThreshold;
}
public void setTempThreshold(BigDecimal tempThreshold) {
this.tempThreshold = tempThreshold;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getCreateUserId() {
return this.createUserId;
}
public void setCreateUserId(String createUserId) {
this.createUserId = createUserId;
}
public Long getLastUpdateTime() {
return this.lastUpdateTime;
}
public void setLastUpdateTime(Long lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
public String getLastUpdateUserId() {
return this.lastUpdateUserId;
}
public void setLastUpdateUserId(String lastUpdateUserId) {
this.lastUpdateUserId = lastUpdateUserId;
}
public String getSubDeviceId() {
return this.subDeviceId;
}
public void setSubDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
}
public String getSubDeviceCode() {
return this.subDeviceCode;
}
public void setSubDeviceCode(String subDeviceCode) {
this.subDeviceCode = subDeviceCode;
}
public String getSubDeviceName() {
return this.subDeviceName;
}
public void setSubDeviceName(String subDeviceName) {
this.subDeviceName = subDeviceName;
}
public String getSubDeviceTypeId() {
return this.subDeviceTypeId;
}
public void setSubDeviceTypeId(String subDeviceTypeId) {
this.subDeviceTypeId = subDeviceTypeId;
}
public String getSubDeviceTypeName() {
return this.subDeviceTypeName;
}
public void setSubDeviceTypeName(String subDeviceTypeName) {
this.subDeviceTypeName = subDeviceTypeName;
}
public String getPersonLabelIds() {
return this.personLabelIds;
}
public void setPersonLabelIds(String personLabelIds) {
this.personLabelIds = personLabelIds;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(this.getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(this.hashCode());
sb.append(", id=").append(this.id);
sb.append(", personId=").append(this.personId);
sb.append(", personName=").append(this.personName);
sb.append(", businessId=").append(this.businessId);
sb.append(", deviceId=").append(this.deviceId);
sb.append(", deviceCode=").append(this.deviceCode);
sb.append(", deviceName=").append(this.deviceName);
sb.append(", threshold=").append(this.threshold);
sb.append(", districtId=").append(this.districtId);
sb.append(", areaId=").append(this.areaId);
sb.append(", deviceTypeId=").append(this.deviceTypeId);
sb.append(", deviceTypeName=").append(this.deviceTypeName);
sb.append(", subDeviceId=").append(this.subDeviceId);
sb.append(", subDeviceCode=").append(this.subDeviceCode);
sb.append(", subDeviceName=").append(this.subDeviceName);
sb.append(", subDeviceTypeId=").append(this.subDeviceTypeId);
sb.append(", subDeviceTypeName=").append(this.subDeviceTypeName);
sb.append(", registerImagePath=").append(this.registerImagePath);
sb.append(", faceImagePath=").append(this.faceImagePath);
sb.append(", panoramaImagePath=").append(this.panoramaImagePath);
sb.append(", score=").append(this.score);
sb.append(", recognitionResult=").append(this.recognitionResult);
sb.append(", recognitionTime=").append(this.recognitionTime);
sb.append(", groupId=").append(this.groupId);
sb.append(", faceId=").append(this.faceId);
sb.append(", qualityScore=").append(this.qualityScore);
sb.append(", logId=").append(this.logId);
sb.append(", tempScore=").append(this.tempScore);
sb.append(", maskScore=").append(this.maskScore);
sb.append(", tempThreshold=").append(this.tempThreshold);
sb.append(", remark=").append(this.remark);
sb.append(", createTime=").append(this.createTime);
sb.append(", createUserId=").append(this.createUserId);
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
sb.append(", personLabelIds=").append(this.personLabelIds);
sb.append("]");
return sb.toString();
}
}
@@ -0,0 +1,252 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.elevator.annontation.DavinciPic
*/
package cn.cloudwalk.elevator.record.dto;
import cn.cloudwalk.elevator.annontation.DavinciPic;
import java.io.Serializable;
import java.math.BigDecimal;
public class AcsRecordDetailQueryResultDTO
implements Serializable {
private static final long serialVersionUID = 4497772884928418301L;
private String openDoorId;
private String panoramaImageRecog;
private String panoramaImageOpen;
private String faceImage;
@DavinciPic
private String registerImage;
private String personName;
private long recognitionTime;
private String districtId;
private String areaId;
private String deviceTypeName;
private String deviceName;
private String openDoorType;
private String operateName;
private BigDecimal score;
private Integer recordResult;
private String recognitionNo;
private String regRecordId;
private BigDecimal threshold;
private Integer recognitionResult;
private String groupId;
private String faceId;
private BigDecimal qualityScore;
private String logId;
private BigDecimal tempScore;
private BigDecimal maskScore;
private BigDecimal tempThreshold;
public String getOpenDoorId() {
return this.openDoorId;
}
public void setOpenDoorId(String openDoorId) {
this.openDoorId = openDoorId;
}
public String getPanoramaImageRecog() {
return this.panoramaImageRecog;
}
public void setPanoramaImageRecog(String panoramaImageRecog) {
this.panoramaImageRecog = panoramaImageRecog;
}
public String getPanoramaImageOpen() {
return this.panoramaImageOpen;
}
public void setPanoramaImageOpen(String panoramaImageOpen) {
this.panoramaImageOpen = panoramaImageOpen;
}
public String getFaceImage() {
return this.faceImage;
}
public void setFaceImage(String faceImage) {
this.faceImage = faceImage;
}
public String getRegisterImage() {
return this.registerImage;
}
public void setRegisterImage(String registerImage) {
this.registerImage = registerImage;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public BigDecimal getScore() {
return this.score;
}
public void setScore(BigDecimal score) {
this.score = score;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public String getRegRecordId() {
return this.regRecordId;
}
public void setRegRecordId(String regRecordId) {
this.regRecordId = regRecordId;
}
public BigDecimal getThreshold() {
return this.threshold;
}
public void setThreshold(BigDecimal threshold) {
this.threshold = threshold;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public BigDecimal getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(BigDecimal qualityScore) {
this.qualityScore = qualityScore;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public BigDecimal getTempScore() {
return this.tempScore;
}
public void setTempScore(BigDecimal tempScore) {
this.tempScore = tempScore;
}
public BigDecimal getMaskScore() {
return this.maskScore;
}
public void setMaskScore(BigDecimal maskScore) {
this.maskScore = maskScore;
}
public BigDecimal getTempThreshold() {
return this.tempThreshold;
}
public void setTempThreshold(BigDecimal tempThreshold) {
this.tempThreshold = tempThreshold;
}
}
@@ -0,0 +1,39 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
public class AcsRecordThreeSendQueryDTO
implements Serializable {
private static final long serialVersionUID = -4419274892857176883L;
private String businessId;
private Long startTime;
private Long endTime;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
}
@@ -0,0 +1,29 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
public class SendRecordTimeAddDTO
implements Serializable {
private Long time;
private Integer type;
public Long getTime() {
return this.time;
}
public void setTime(Long time) {
this.time = time;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
}
@@ -0,0 +1,29 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
public class SendRecordTimeEditDTO
implements Serializable {
private Long time;
private Integer type;
public Long getTime() {
return this.time;
}
public void setTime(Long time) {
this.time = time;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
}
@@ -0,0 +1,29 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.dto;
import java.io.Serializable;
public class SendRecordTimeResultDTO
implements Serializable {
private Long time;
private Integer type;
public Long getTime() {
return this.time;
}
public void setTime(Long time) {
this.time = time;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
}
@@ -0,0 +1,141 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* com.github.pagehelper.Page
* com.github.pagehelper.page.PageMethod
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.record.impl;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.elevator.record.dao.AcsElevatorRecordDao;
import cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorPageRequestInfoResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO;
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO;
import cn.cloudwalk.elevator.record.mapper.AcsElevatorRecordMapper;
import com.github.pagehelper.Page;
import com.github.pagehelper.page.PageMethod;
import java.util.Collection;
import java.util.List;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
@Repository
public class AcsElevatorRecordDaoImpl
implements AcsElevatorRecordDao {
@Resource
private AcsElevatorRecordMapper acsElevatorRecordMapper;
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
try {
PageMethod.startPage((int)pageInfo.getCurrentPage(), (int)pageInfo.getPageSize());
Page result = (Page)this.acsElevatorRecordMapper.page(queryDTO);
return new CloudwalkPageAble((Collection)result.getResult(), pageInfo, result.getTotal());
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u5237\u8138\u6d3e\u68af\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public Integer add(AcsElevatorRecordAddDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u5237\u8138\u6d3e\u68af\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public int update(AcsOpenDoorRecordEditDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.update(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u5237\u8138\u6d3e\u68af\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.query(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u5237\u8138\u6d3e\u68af\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO queryDTO) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.listByRecognitionTime(queryDTO);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u8bc6\u522b\u65f6\u95f4\u67e5\u8be2\u6d3e\u68af\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String businessId) throws DataAccessException {
try {
AcsElevatorPageRequestInfoResultDTO infoResultDTO = new AcsElevatorPageRequestInfoResultDTO();
infoResultDTO.setSrcFloorList(this.acsElevatorRecordMapper.srcFloor(businessId));
infoResultDTO.setDestFloorList(this.acsElevatorRecordMapper.destFloor(businessId));
infoResultDTO.setDispatchElevatorNoList(this.acsElevatorRecordMapper.dispatchElevatorNo(businessId));
return infoResultDTO;
}
catch (Exception e) {
this.logger.error("\u5f00\u95e8\u8bb0\u5f55\u5206\u9875\u8bf7\u6c42\u6570\u636e\u67e5\u8be2\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public Integer analyseCount(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.analyseCount(acsElevatorQueryCountDTO);
}
catch (Exception e) {
this.logger.error("\u5f00\u95e8\u8bb0\u5f55\u7edf\u8ba1\u5206\u6790\u67e5\u8be2\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.analyseGroup(acsElevatorQueryCountDTO);
}
catch (Exception e) {
this.logger.error("\u5f00\u95e8\u8bb0\u5f55\u7edf\u8ba1\u5206\u6790\u5206\u7ec4\u67e5\u8be2\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,64 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.record.impl;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.elevator.record.dao.AcsRecogRecordDao;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO;
import cn.cloudwalk.elevator.record.mapper.AcsRecogRecordMapper;
import java.util.List;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
@Repository
public class AcsRecogRecordDaoImpl
implements AcsRecogRecordDao {
@Resource
private AcsRecogRecordMapper acsRecogRecordMapper;
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public Integer add(AcsRecogRecordAddDTO dto) throws DataAccessException {
try {
return this.acsRecogRecordMapper.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u8bc6\u522b\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO dto) throws DataAccessException {
try {
return this.acsRecogRecordMapper.page(dto);
}
catch (Exception e) {
this.logger.error("\u5206\u9875\u67e5\u8be2\u8bc6\u522b\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public AcsRecogRecordResultDTO getByPersonId(String personId) throws DataAccessException {
try {
return this.acsRecogRecordMapper.getByPersonId(personId);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u4eba\u5458id\u67e5\u8be2\u8bc6\u522b\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,63 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.stereotype.Repository
*/
package cn.cloudwalk.elevator.record.impl;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.elevator.record.dao.SendRecordTimeDao;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO;
import cn.cloudwalk.elevator.record.mapper.SendRecordTimeMapper;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
@Repository
public class SendRecordTimeDaoImpl
implements SendRecordTimeDao {
@Resource
private SendRecordTimeMapper sendRecordTimeMapper;
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public SendRecordTimeResultDTO getByType(Integer type) throws DataAccessException {
try {
return this.sendRecordTimeMapper.getByType(type);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u7c7b\u578b\u83b7\u53d6\u65f6\u95f4\u6233\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public Integer add(SendRecordTimeAddDTO timeAddDTO) throws DataAccessException {
try {
return this.sendRecordTimeMapper.add(timeAddDTO);
}
catch (Exception e) {
this.logger.error("\u65b0\u589e\u65f6\u95f4\u6233\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Override
public Integer update(SendRecordTimeEditDTO editDTO) throws DataAccessException {
try {
return this.sendRecordTimeMapper.update(editDTO);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u7c7b\u578b\u4fee\u6539\u65f6\u95f4\u6233\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,44 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.apache.ibatis.annotations.Param
*/
package cn.cloudwalk.elevator.record.mapper;
import cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO;
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO;
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AcsElevatorRecordMapper {
public List<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO var1);
public List<AcsElevatorRecordDetailQueryResultDTO> page(AcsElevatorRecordDetailQueryDTO var1);
public int add(AcsElevatorRecordAddDTO var1);
public int update(AcsOpenDoorRecordEditDTO var1);
public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO var1);
public List<String> srcFloor(@Param(value="businessId") String var1);
public List<String> destFloor(@Param(value="businessId") String var1);
public List<String> dispatchElevatorNo(@Param(value="businessId") String var1);
public Integer analyseCount(AcsElevatorQueryCountDTO var1);
public List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO var1);
public List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO var1);
}
@@ -0,0 +1,18 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.elevator.record.mapper;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO;
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO;
import java.util.List;
public interface AcsRecogRecordMapper {
public int add(AcsRecogRecordAddDTO var1);
public List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO var1);
public AcsRecogRecordResultDTO getByPersonId(String var1);
}
@@ -0,0 +1,21 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.apache.ibatis.annotations.Param
*/
package cn.cloudwalk.elevator.record.mapper;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO;
import cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO;
import org.apache.ibatis.annotations.Param;
public interface SendRecordTimeMapper {
public SendRecordTimeResultDTO getByType(@Param(value="type") Integer var1);
public Integer add(SendRecordTimeAddDTO var1);
public Integer update(SendRecordTimeEditDTO var1);
}
@@ -0,0 +1,2 @@
Summary for /media/zebra/9e8fa357-7db6-4d70-88ed-d5de5a059a663/星河湾星中星/反编译/artifacts/decompiled/v1-cfr-compare-20211103/extracted-fat/lib/cw-elevator-application-data-1.0-SNAPSHOT.jar
Decompiled with CFR 0.152