chore: 工作区反编译与 Maven/文档/脚本同步到发布分支

- artifacts/decompiled 树与相关源码变更
- maven-cw-elevator-application 业务 docs 与 package-info
- scripts 下 formatter 校验与辅助脚本
- 其他子工程/接口与发布线一并纳入版本控制

Made-with: Cursor

Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
This commit is contained in:
反编译工作区
2026-04-25 09:35:35 +08:00
parent 1c28fcedfc
commit dee355b4a7
2000 changed files with 133077 additions and 169300 deletions
@@ -1,91 +1,87 @@
/* */ 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) {
/* 36 */ Long time = (Long)shardingValue.getValue();
/* 37 */ String suffix = DateUtils.formatDate(new Date(time.longValue()), "yyyy");
/* 38 */ String logicTableName = shardingValue.getLogicTableName();
/* 39 */ String actualTableName = logicTableName + "_" + suffix;
/* 40 */ if (!availableTargetNames.contains(actualTableName));
/* */
/* */
/* 43 */ return actualTableName;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Collection<String> doSharding(Collection<String> availableTargetNames, RangeShardingValue<Long> shardingValue) {
/* 56 */ Collection<String> availables = new ArrayList<>();
/* 57 */ Range<Long> valueRange = shardingValue.getValueRange();
/* */
/* 59 */ if (!CollectionUtils.isEmpty(availableTargetNames)) {
/* */
/* 61 */ Integer lowerBoundYear = Integer.valueOf(-2147483648);
/* 62 */ Integer upperBoundYear = Integer.valueOf(2147483647);
/* */
/* 64 */ if (valueRange.hasLowerBound()) {
/* 65 */ lowerBoundYear = Integer.valueOf(Integer.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.lowerEndpoint()).longValue()), "YYYY")));
/* */ }
/* */
/* */
/* 69 */ if (valueRange.hasUpperBound()) {
/* 70 */ upperBoundYear = Integer.valueOf(Integer.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.upperEndpoint()).longValue()), "YYYY")));
/* */ }
/* */
/* 73 */ for (String targetTable : availableTargetNames) {
/* 74 */ Integer tableNameSuffix = Integer.valueOf(Integer.parseInt(targetTable.substring(targetTable.lastIndexOf('_') + 1, targetTable
/* 75 */ .lastIndexOf('_') + 5)));
/* 76 */ if (tableNameSuffix.compareTo(lowerBoundYear) < 0 || tableNameSuffix.compareTo(upperBoundYear) > 0) {
/* */ continue;
/* */ }
/* 79 */ availables.add(targetTable);
/* */ }
/* */ }
/* */
/* 83 */ return availables;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\YearlyShardingAlgorithm.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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(new Date(time.longValue()), "yyyy");
String logicTableName = shardingValue.getLogicTableName();
String actualTableName = logicTableName + "_" + suffix;
if (!availableTargetNames.contains(actualTableName));
return actualTableName;
}
public Collection<String> doSharding(Collection<String> availableTargetNames, RangeShardingValue<Long> shardingValue) {
Collection<String> availables = new ArrayList<>();
Range<Long> valueRange = shardingValue.getValueRange();
if (!CollectionUtils.isEmpty(availableTargetNames)) {
Integer lowerBoundYear = Integer.valueOf(-2147483648);
Integer upperBoundYear = Integer.valueOf(2147483647);
if (valueRange.hasLowerBound()) {
lowerBoundYear = Integer.valueOf(Integer.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.lowerEndpoint()).longValue()), "YYYY")));
}
if (valueRange.hasUpperBound()) {
upperBoundYear = Integer.valueOf(Integer.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.upperEndpoint()).longValue()), "YYYY")));
}
for (String targetTable : availableTargetNames) {
Integer tableNameSuffix = Integer.valueOf(Integer.parseInt(targetTable.substring(targetTable.lastIndexOf('_') + 1, targetTable
.lastIndexOf('_') + 5)));
if (tableNameSuffix.compareTo(lowerBoundYear) < 0 || tableNameSuffix.compareTo(upperBoundYear) > 0) {
continue;
}
availables.add(targetTable);
}
}
return availables;
}
}
@@ -1,21 +1,17 @@
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 {
Integer insertNew(AcsElevatorCodeDTO paramAcsElevatorCodeDTO) throws ServiceException;
Integer updateOld(AcsElevatorCodeDTO paramAcsElevatorCodeDTO) throws ServiceException;
AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
AcsElevatorCodeResultDTO getFirstByParentId(String paramString);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dao\AcsElevatorCodeDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
Integer insertNew(AcsElevatorCodeDTO paramAcsElevatorCodeDTO) throws ServiceException;
Integer updateOld(AcsElevatorCodeDTO paramAcsElevatorCodeDTO) throws ServiceException;
AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
AcsElevatorCodeResultDTO getFirstByParentId(String paramString);
}
@@ -1,74 +1,70 @@
/* */ 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() {
/* 38 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 42 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getCode() {
/* 46 */ return this.code;
/* */ }
/* */
/* */ public void setCode(String code) {
/* 50 */ this.code = code;
/* */ }
/* */
/* */ public Integer getIsFirst() {
/* 54 */ return this.isFirst;
/* */ }
/* */
/* */ public void setIsFirst(Integer isFirst) {
/* 58 */ this.isFirst = isFirst;
/* */ }
/* */
/* */ public String getParentId() {
/* 62 */ return this.parentId;
/* */ }
/* */
/* */ public void setParentId(String parentId) {
/* 66 */ this.parentId = parentId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dto\AcsElevatorCodeDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,101 +1,97 @@
/* */ 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() {
/* 49 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 53 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getCode() {
/* 57 */ return this.code;
/* */ }
/* */
/* */ public void setCode(String code) {
/* 61 */ this.code = code;
/* */ }
/* */
/* */ public String getZoneName() {
/* 65 */ return this.zoneName;
/* */ }
/* */
/* */ public void setZoneName(String zoneName) {
/* 69 */ this.zoneName = zoneName;
/* */ }
/* */
/* */ public String getZoneType() {
/* 73 */ return this.zoneType;
/* */ }
/* */
/* */ public void setZoneType(String zoneType) {
/* 77 */ this.zoneType = zoneType;
/* */ }
/* */
/* */ public String getId() {
/* 81 */ return this.id;
/* */ }
/* */
/* */ public void setId(String id) {
/* 85 */ this.id = id;
/* */ }
/* */
/* */ public Integer getIsFirst() {
/* 89 */ return this.isFirst;
/* */ }
/* */
/* */ public void setIsFirst(Integer isFirst) {
/* 93 */ this.isFirst = isFirst;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dto\AcsElevatorCodeQueryDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,53 +1,49 @@
/* */ package cn.cloudwalk.elevator.codeElevatorArea.dto;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsElevatorCodeResultDTO
/* */ {
/* */ private String zoneId;
/* */ private String code;
/* */ private Integer isFirst;
/* */
/* */ public String getZoneId() {
/* 25 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 29 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getCode() {
/* 33 */ return this.code;
/* */ }
/* */
/* */ public void setCode(String code) {
/* 37 */ this.code = code;
/* */ }
/* */
/* */ public Integer getIsFirst() {
/* 41 */ return this.isFirst;
/* */ }
/* */
/* */ public void setIsFirst(Integer isFirst) {
/* 45 */ this.isFirst = isFirst;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dto\AcsElevatorCodeResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,47 +1,43 @@
/* */ 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;
/* */
/* */ public Integer insertNew(AcsElevatorCodeDTO dto) throws ServiceException {
/* 23 */ return Integer.valueOf(this.acsElevatorCodeMapper.insertNew(dto));
/* */ }
/* */
/* */
/* */
/* */ public Integer updateOld(AcsElevatorCodeDTO dto) throws ServiceException {
/* 29 */ return Integer.valueOf(this.acsElevatorCodeMapper.updateOld(dto));
/* */ }
/* */
/* */
/* */ public AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO dto) {
/* 34 */ return this.acsElevatorCodeMapper.get(dto);
/* */ }
/* */
/* */
/* */ public AcsElevatorCodeResultDTO getFirstByParentId(String parentId) {
/* 39 */ return this.acsElevatorCodeMapper.getFirstByParentId(parentId);
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\impl\AcsElevatorCodeDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
public Integer insertNew(AcsElevatorCodeDTO dto) throws ServiceException {
return Integer.valueOf(this.acsElevatorCodeMapper.insertNew(dto));
}
public Integer updateOld(AcsElevatorCodeDTO dto) throws ServiceException {
return Integer.valueOf(this.acsElevatorCodeMapper.updateOld(dto));
}
public AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO dto) {
return this.acsElevatorCodeMapper.get(dto);
}
public AcsElevatorCodeResultDTO getFirstByParentId(String parentId) {
return this.acsElevatorCodeMapper.getFirstByParentId(parentId);
}
}
@@ -1,20 +1,16 @@
package cn.cloudwalk.elevator.codeElevatorArea.mapper;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
public interface AcsElevatorCodeMapper {
AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
int insertNew(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
int updateOld(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
AcsElevatorCodeResultDTO getFirstByParentId(String paramString);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\mapper\AcsElevatorCodeMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.codeElevatorArea.mapper;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
public interface AcsElevatorCodeMapper {
AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
int insertNew(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
int updateOld(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
AcsElevatorCodeResultDTO getFirstByParentId(String paramString);
}
@@ -1,20 +1,16 @@
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
public interface AcsDeviceTaskDao {
Integer insert(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateBingDevices(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateIsStop(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
AcsDeviceTaskDTO getById(String paramString);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dao\AcsDeviceTaskDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
public interface AcsDeviceTaskDao {
Integer insert(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateBingDevices(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateIsStop(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
AcsDeviceTaskDTO getById(String paramString);
}
@@ -1,46 +1,42 @@
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 {
Integer add(AcsElevatorDeviceAddDTO paramAcsElevatorDeviceAddDTO) throws DataAccessException;
Integer edit(AcsElevatorDeviceEditDTO paramAcsElevatorDeviceEditDTO) throws DataAccessException;
Integer delete(List<String> paramList) throws DataAccessException;
CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto paramAcsElevatorDeviceListByBuildingIdDto) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO paramAcsElevatorDeviceQueryByIdDTO) throws ServiceException;
AcsElevatorDeviceResultDTO getByDeciveCode(String paramString) throws ServiceException;
String getBuildingId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
String getBusinessId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dao\AcsElevatorDeviceDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
Integer add(AcsElevatorDeviceAddDTO paramAcsElevatorDeviceAddDTO) throws DataAccessException;
Integer edit(AcsElevatorDeviceEditDTO paramAcsElevatorDeviceEditDTO) throws DataAccessException;
Integer delete(List<String> paramList) throws DataAccessException;
CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto paramAcsElevatorDeviceListByBuildingIdDto) throws DataAccessException;
List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO paramAcsElevatorDeviceQueryByIdDTO) throws ServiceException;
AcsElevatorDeviceResultDTO getByDeciveCode(String paramString) throws ServiceException;
String getBuildingId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
String getBusinessId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
}
@@ -1,15 +1,11 @@
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.cloud.exception.ServiceException;
public interface DeviceImageStoreDao {
Boolean save(String paramString1, String paramString2) throws ServiceException;
String getByBuildingId(String paramString) throws ServiceException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dao\DeviceImageStoreDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.device.dao;
import cn.cloudwalk.cloud.exception.ServiceException;
public interface DeviceImageStoreDao {
Boolean save(String paramString1, String paramString2) throws ServiceException;
String getByBuildingId(String paramString) throws ServiceException;
}
@@ -1,154 +1,150 @@
/* */ 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() {
/* 70 */ return this.id;
/* */ }
/* */
/* */ public void setId(String id) {
/* 74 */ this.id = id;
/* */ }
/* */
/* */ public List<String> getIds() {
/* 78 */ return this.ids;
/* */ }
/* */
/* */ public void setIds(List<String> ids) {
/* 82 */ this.ids = ids;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 86 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 90 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 94 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 98 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public List<String> getDeviceIds() {
/* 102 */ return this.deviceIds;
/* */ }
/* */
/* */ public void setDeviceIds(List<String> deviceIds) {
/* 106 */ this.deviceIds = deviceIds;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 110 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 114 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getParentDeviceId() {
/* 118 */ return this.parentDeviceId;
/* */ }
/* */
/* */ public void setParentDeviceId(String parentDeviceId) {
/* 122 */ this.parentDeviceId = parentDeviceId;
/* */ }
/* */
/* */ public List<String> getParentDeviceIds() {
/* 126 */ return this.parentDeviceIds;
/* */ }
/* */
/* */ public void setParentDeviceIds(List<String> parentDeviceIds) {
/* 130 */ this.parentDeviceIds = parentDeviceIds;
/* */ }
/* */
/* */ public Integer getQueryParent() {
/* 134 */ return this.queryParent;
/* */ }
/* */
/* */ public void setQueryParent(Integer queryParent) {
/* 138 */ this.queryParent = queryParent;
/* */ }
/* */
/* */ public Integer getOpenStatus() {
/* 142 */ return this.openStatus;
/* */ }
/* */
/* */ public void setOpenStatus(Integer openStatus) {
/* 146 */ this.openStatus = openStatus;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceQueryDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,116 +1,112 @@
/* */ 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() {
/* 55 */ return this.id;
/* */ }
/* */
/* */
/* */ public void setId(String id) {
/* 60 */ this.id = id;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 64 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 68 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 72 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 76 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 80 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 84 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getParentDeviceId() {
/* 88 */ return this.parentDeviceId;
/* */ }
/* */
/* */ public void setParentDeviceId(String parentDeviceId) {
/* 92 */ this.parentDeviceId = parentDeviceId;
/* */ }
/* */
/* */ public String getImageStoreId() {
/* 96 */ return this.imageStoreId;
/* */ }
/* */
/* */ public void setImageStoreId(String imageStoreId) {
/* 100 */ this.imageStoreId = imageStoreId;
/* */ }
/* */
/* */ public Integer getOpenStatus() {
/* 104 */ return this.openStatus;
/* */ }
/* */
/* */ public void setOpenStatus(Integer openStatus) {
/* 108 */ this.openStatus = openStatus;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,62 +1,58 @@
/* */ 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() {
/* 34 */ return this.allDevices;
/* */ }
/* */
/* */ public void setAllDevices(Integer allDevices) {
/* 38 */ this.allDevices = allDevices;
/* */ }
/* */
/* */ public Integer getBindDevices() {
/* 42 */ return this.bindDevices;
/* */ }
/* */
/* */ public void setBindDevices(Integer bindDevices) {
/* 46 */ this.bindDevices = bindDevices;
/* */ }
/* */
/* */ public Integer getIsStop() {
/* 50 */ return this.isStop;
/* */ }
/* */
/* */ public void setIsStop(Integer isStop) {
/* 54 */ this.isStop = isStop;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceTaskAddDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,75 +1,71 @@
/* */ 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() {
/* 39 */ return this.id;
/* */ }
/* */
/* */ public void setId(String id) {
/* 43 */ this.id = id;
/* */ }
/* */
/* */ public Integer getAllDevices() {
/* 47 */ return this.allDevices;
/* */ }
/* */
/* */ public void setAllDevices(Integer allDevices) {
/* 51 */ this.allDevices = allDevices;
/* */ }
/* */
/* */ public Integer getBindDevices() {
/* 55 */ return this.bindDevices;
/* */ }
/* */
/* */ public void setBindDevices(Integer bindDevices) {
/* 59 */ this.bindDevices = bindDevices;
/* */ }
/* */
/* */ public Integer getIsStop() {
/* 63 */ return this.isStop;
/* */ }
/* */
/* */ public void setIsStop(Integer isStop) {
/* 67 */ this.isStop = isStop;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceTaskDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,228 +1,224 @@
/* */ 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() {
/* 98 */ return this.elevatorFloorIdList;
/* */ }
/* */
/* */ public void setElevatorFloorIdList(String elevatorFloorIdList) {
/* 102 */ this.elevatorFloorIdList = elevatorFloorIdList;
/* */ }
/* */
/* */ public String getCurrentBuildingId() {
/* 106 */ return this.currentBuildingId;
/* */ }
/* */
/* */ public void setCurrentBuildingId(String currentBuildingId) {
/* 110 */ this.currentBuildingId = currentBuildingId;
/* */ }
/* */
/* */ public String getAreaId() {
/* 114 */ return this.areaId;
/* */ }
/* */
/* */ public void setAreaId(String areaId) {
/* 118 */ this.areaId = areaId;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 122 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 126 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 130 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 134 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 138 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 142 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getDeviceName() {
/* 146 */ return this.deviceName;
/* */ }
/* */
/* */ public void setDeviceName(String deviceName) {
/* 150 */ this.deviceName = deviceName;
/* */ }
/* */
/* */ public String getDeviceTypeName() {
/* 154 */ return this.deviceTypeName;
/* */ }
/* */
/* */ public void setDeviceTypeName(String deviceTypeName) {
/* 158 */ this.deviceTypeName = deviceTypeName;
/* */ }
/* */
/* */ public String getElevatorFloorList() {
/* 162 */ return this.elevatorFloorList;
/* */ }
/* */
/* */ public void setElevatorFloorList(String elevatorFloorList) {
/* 166 */ this.elevatorFloorList = elevatorFloorList;
/* */ }
/* */
/* */ public String getCurrentFloorId() {
/* 170 */ return this.currentFloorId;
/* */ }
/* */
/* */ public void setCurrentFloorId(String currentFloorId) {
/* 174 */ this.currentFloorId = currentFloorId;
/* */ }
/* */
/* */ public String getCurrentFloor() {
/* 178 */ return this.currentFloor;
/* */ }
/* */
/* */ public void setCurrentFloor(String currentFloor) {
/* 182 */ this.currentFloor = currentFloor;
/* */ }
/* */
/* */ public String getCurrentBuilding() {
/* 186 */ return this.currentBuilding;
/* */ }
/* */
/* */ public void setCurrentBuilding(String currentBuilding) {
/* 190 */ this.currentBuilding = currentBuilding;
/* */ }
/* */
/* */ public String getAreaName() {
/* 194 */ return this.areaName;
/* */ }
/* */
/* */ public void setAreaName(String areaName) {
/* 198 */ this.areaName = areaName;
/* */ }
/* */
/* */ public Integer getStatus() {
/* 202 */ return this.status;
/* */ }
/* */
/* */ public void setStatus(Integer status) {
/* 206 */ this.status = status;
/* */ }
/* */
/* */ public Integer getDeleteFlag() {
/* 210 */ return this.deleteFlag;
/* */ }
/* */
/* */ public void setDeleteFlag(Integer deleteFlag) {
/* 214 */ this.deleteFlag = deleteFlag;
/* */ }
/* */
/* */
/* */
/* */ public String toString() {
/* 220 */ 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 + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceAddDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '}';
}
}
@@ -1,123 +1,119 @@
/* */ 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() {
/* 57 */ return this.elevatorFloorIdList;
/* */ }
/* */
/* */ public void setElevatorFloorIdList(String elevatorFloorIdList) {
/* 61 */ this.elevatorFloorIdList = elevatorFloorIdList;
/* */ }
/* */
/* */ public String getAreaId() {
/* 65 */ return this.areaId;
/* */ }
/* */
/* */ public void setAreaId(String areaId) {
/* 69 */ this.areaId = areaId;
/* */ }
/* */
/* */
/* */ public String getElevatorFloorList() {
/* 74 */ return this.elevatorFloorList;
/* */ }
/* */
/* */ public void setElevatorFloorList(String elevatorFloorList) {
/* 78 */ this.elevatorFloorList = elevatorFloorList;
/* */ }
/* */
/* */ public String getCurrentFloorId() {
/* 82 */ return this.currentFloorId;
/* */ }
/* */
/* */ public void setCurrentFloorId(String currentFloorId) {
/* 86 */ this.currentFloorId = currentFloorId;
/* */ }
/* */
/* */ public String getCurrentFloor() {
/* 90 */ return this.currentFloor;
/* */ }
/* */
/* */ public void setCurrentFloor(String currentFloor) {
/* 94 */ this.currentFloor = currentFloor;
/* */ }
/* */
/* */ public String getCurrentBuilding() {
/* 98 */ return this.currentBuilding;
/* */ }
/* */
/* */ public void setCurrentBuilding(String currentBuilding) {
/* 102 */ this.currentBuilding = currentBuilding;
/* */ }
/* */
/* */ public String getCurrentBuildingId() {
/* 106 */ return this.currentBuildingId;
/* */ }
/* */
/* */ public void setCurrentBuildingId(String currentBuildingId) {
/* 110 */ this.currentBuildingId = currentBuildingId;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 115 */ return "AcsElevatorDeciveEditDTO{elevatorFloorList='" + this.elevatorFloorList + '\'' + ", currentFloorId='" + this.currentFloorId + '\'' + ", currentFloor='" + this.currentFloor + '\'' + ", currentBuilding='" + this.currentBuilding + '\'' + ", currentBuildingId='" + this.currentBuildingId + '\'' + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceEditDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '\'' + '}';
}
}
@@ -1,34 +1,30 @@
/* */ package cn.cloudwalk.elevator.device.dto;
/* */
/* */ import java.io.Serializable;
/* */
/* */
/* */
/* */
/* */ public class AcsElevatorDeviceListByBuildingIdDto
/* */ implements Serializable
/* */ {
/* */ private String businessId;
/* */ private String currentBuildingId;
/* */
/* */ public void setBusinessId(String businessId) {
/* 15 */ 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; Object this$businessId = getBusinessId(), other$businessId = other.getBusinessId(); if ((this$businessId == null) ? (other$businessId != null) : !this$businessId.equals(other$businessId)) return false; Object this$currentBuildingId = getCurrentBuildingId(), 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; result = 1; Object $businessId = getBusinessId(); result = result * 59 + (($businessId == null) ? 43 : $businessId.hashCode()); Object $currentBuildingId = getCurrentBuildingId(); return result * 59 + (($currentBuildingId == null) ? 43 : $currentBuildingId.hashCode()); } public String toString() { return "AcsElevatorDeviceListByBuildingIdDto(businessId=" + getBusinessId() + ", currentBuildingId=" + getCurrentBuildingId() + ")"; }
/* */
/* */
/* */
/* */
/* */ public String getBusinessId() {
/* 21 */ return this.businessId;
/* */ }
/* */
/* */
/* */ public String getCurrentBuildingId() {
/* 26 */ return this.currentBuildingId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceListByBuildingIdDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.device.dto;
import java.io.Serializable;
public class AcsElevatorDeviceListByBuildingIdDto
implements Serializable
{
private String businessId;
private String 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; Object this$businessId = getBusinessId(), other$businessId = other.getBusinessId(); if ((this$businessId == null) ? (other$businessId != null) : !this$businessId.equals(other$businessId)) return false; Object this$currentBuildingId = getCurrentBuildingId(), 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; result = 1; Object $businessId = getBusinessId(); result = result * 59 + (($businessId == null) ? 43 : $businessId.hashCode()); Object $currentBuildingId = getCurrentBuildingId(); return result * 59 + (($currentBuildingId == null) ? 43 : $currentBuildingId.hashCode()); } public String toString() { return "AcsElevatorDeviceListByBuildingIdDto(businessId=" + getBusinessId() + ", currentBuildingId=" + getCurrentBuildingId() + ")"; }
public String getBusinessId() {
return this.businessId;
}
public String getCurrentBuildingId() {
return this.currentBuildingId;
}
}
@@ -1,59 +1,55 @@
/* */ 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() {
/* 31 */ return this.currentFloorIds;
/* */ }
/* */
/* */ public void setCurrentFloorIds(List<String> currentFloorIds) {
/* 35 */ this.currentFloorIds = currentFloorIds;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 39 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 43 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getCurrentFloorId() {
/* 47 */ return this.currentFloorId;
/* */ }
/* */
/* */ public void setCurrentFloorId(String currentFloorId) {
/* 51 */ this.currentFloorId = currentFloorId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceListDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,35 +1,31 @@
/* */ 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() {
/* 22 */ return this.id;
/* */ }
/* */
/* */
/* */ public void setId(String id) {
/* 27 */ this.id = id;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceQueryByIdDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,148 +1,144 @@
/* */ 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() {
/* 64 */ return this.ip;
/* */ }
/* */
/* */ public void setIp(String ip) {
/* 68 */ this.ip = ip;
/* */ }
/* */
/* */ public Integer getStatus() {
/* 72 */ return this.status;
/* */ }
/* */
/* */ public void setStatus(Integer status) {
/* 76 */ this.status = status;
/* */ }
/* */
/* */ public Integer getOnlineStatus() {
/* 80 */ return this.onlineStatus;
/* */ }
/* */
/* */ public void setOnlineStatus(Integer onlineStatus) {
/* 84 */ this.onlineStatus = onlineStatus;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 88 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 92 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 96 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 100 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public List<String> getAreaIds() {
/* 104 */ return this.areaIds;
/* */ }
/* */
/* */ public void setAreaIds(List<String> areaIds) {
/* 108 */ this.areaIds = areaIds;
/* */ }
/* */
/* */ public String getAreaName() {
/* 112 */ return this.areaName;
/* */ }
/* */
/* */ public void setAreaName(String areaName) {
/* 116 */ this.areaName = areaName;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 120 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 124 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getDeviceName() {
/* 128 */ return this.deviceName;
/* */ }
/* */
/* */ public void setDeviceName(String deviceName) {
/* 132 */ this.deviceName = deviceName;
/* */ }
/* */
/* */ public String getDeviceTypeName() {
/* 136 */ return this.deviceTypeName;
/* */ }
/* */
/* */ public void setDeviceTypeName(String deviceTypeName) {
/* 140 */ this.deviceTypeName = deviceTypeName;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceQueryDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,36 +1,32 @@
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;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceQueryResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
@@ -1,52 +1,48 @@
/* */ 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;
/* */
/* */ public Integer insert(AcsDeviceTaskAddDto dto) {
/* 29 */ return this.acsDeviceTaskMapper.insert(dto);
/* */ }
/* */
/* */
/* */ public Integer updateBingDevices(AcsDeviceTaskAddDto dto) {
/* 34 */ return this.acsDeviceTaskMapper.updateBingDevices(dto);
/* */ }
/* */
/* */
/* */ public Integer updateIsStop(AcsDeviceTaskAddDto dto) {
/* 39 */ return this.acsDeviceTaskMapper.updateIsStop(dto);
/* */ }
/* */
/* */
/* */ public AcsDeviceTaskDTO getById(String taskId) {
/* 44 */ return this.acsDeviceTaskMapper.getById(taskId);
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\impl\AcsDeviceTaskDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
public Integer insert(AcsDeviceTaskAddDto dto) {
return this.acsDeviceTaskMapper.insert(dto);
}
public Integer updateBingDevices(AcsDeviceTaskAddDto dto) {
return this.acsDeviceTaskMapper.updateBingDevices(dto);
}
public Integer updateIsStop(AcsDeviceTaskAddDto dto) {
return this.acsDeviceTaskMapper.updateIsStop(dto);
}
public AcsDeviceTaskDTO getById(String taskId) {
return this.acsDeviceTaskMapper.getById(taskId);
}
}
@@ -1,185 +1,181 @@
/* */ 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.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;
/* 36 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Integer add(AcsElevatorDeviceAddDTO dto) throws DataAccessException {
/* */ try {
/* 47 */ return Integer.valueOf(this.acsElevatorDeviceMapper.add(dto));
/* 48 */ } catch (Exception e) {
/* 49 */ this.logger.error("保存派梯设备信息失败,原因:", e);
/* 50 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Integer edit(AcsElevatorDeviceEditDTO dto) throws DataAccessException {
/* */ try {
/* 63 */ return Integer.valueOf(this.acsElevatorDeviceMapper.edit(dto));
/* 64 */ } catch (Exception e) {
/* 65 */ this.logger.error("保存派梯设备信息失败,原因:", e);
/* 66 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Integer delete(List<String> ids) throws DataAccessException {
/* */ try {
/* 79 */ return Integer.valueOf(this.acsElevatorDeviceMapper.delete(ids));
/* 80 */ } catch (Exception e) {
/* 81 */ this.logger.error("删除派梯设备信息失败,原因:", e);
/* 82 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
/* */ try {
/* 97 */ PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
/* 98 */ Page<AcsElevatorDeviceResultDTO> result = (Page<AcsElevatorDeviceResultDTO>)this.acsElevatorDeviceMapper.page(dto);
/* 99 */ return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), AcsElevatorDeviceResultDTO.class), page, result
/* 100 */ .getTotal());
/* 101 */ } catch (Exception e) {
/* 102 */ this.logger.error("设备分页查询失败,原因:", e);
/* 103 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */ public List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto dto) throws DataAccessException {
/* */ try {
/* 111 */ return this.acsElevatorDeviceMapper.listByZoneId(dto);
/* 112 */ } catch (Exception e) {
/* 113 */ this.logger.error("根据楼层id获取设备信息失败,原因:", e);
/* 114 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto dto) throws DataAccessException {
/* */ try {
/* 121 */ return this.acsElevatorDeviceMapper.listByZoneIds(dto);
/* 122 */ } catch (Exception e) {
/* 123 */ this.logger.error("根据楼层id集合获取设备信息失败,原因:", e);
/* 124 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */ public List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto dto) throws DataAccessException {
/* */ try {
/* 132 */ return this.acsElevatorDeviceMapper.listBuBuildingId(dto);
/* 133 */ } catch (Exception e) {
/* 134 */ this.logger.error("根据楼栋id获取设备信息失败,原因:", e);
/* 135 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */ public List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
/* 142 */ return this.acsElevatorDeviceMapper.get(dto);
/* */ }
/* */
/* */
/* */
/* */ public AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO dto) throws ServiceException {
/* 148 */ return this.acsElevatorDeviceMapper.getById(dto);
/* */ }
/* */
/* */
/* */ public AcsElevatorDeviceResultDTO getByDeciveCode(String deviceCode) throws ServiceException {
/* 153 */ AcsElevatorDeviceQueryDTO dto = new AcsElevatorDeviceQueryDTO();
/* 154 */ dto.setDeviceCode(deviceCode);
/* 155 */ return this.acsElevatorDeviceMapper.getByDeciveCode(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String getBuildingId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
/* 166 */ return this.acsElevatorDeviceMapper.getBuildingId(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String getBusinessId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
/* 177 */ return this.acsElevatorDeviceMapper.getBusinessId(dto);
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\impl\AcsElevatorDeviceDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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.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(getClass());
public Integer add(AcsElevatorDeviceAddDTO dto) throws DataAccessException {
try {
return Integer.valueOf(this.acsElevatorDeviceMapper.add(dto));
} catch (Exception e) {
this.logger.error("保存派梯设备信息失败,原因:", e);
throw new DataAccessException(e);
}
}
public Integer edit(AcsElevatorDeviceEditDTO dto) throws DataAccessException {
try {
return Integer.valueOf(this.acsElevatorDeviceMapper.edit(dto));
} catch (Exception e) {
this.logger.error("保存派梯设备信息失败,原因:", e);
throw new DataAccessException(e);
}
}
public Integer delete(List<String> ids) throws DataAccessException {
try {
return Integer.valueOf(this.acsElevatorDeviceMapper.delete(ids));
} catch (Exception e) {
this.logger.error("删除派梯设备信息失败,原因:", e);
throw new DataAccessException(e);
}
}
public CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
Page<AcsElevatorDeviceResultDTO> result = (Page<AcsElevatorDeviceResultDTO>)this.acsElevatorDeviceMapper.page(dto);
return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), AcsElevatorDeviceResultDTO.class), page, result
.getTotal());
} catch (Exception e) {
this.logger.error("设备分页查询失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.listByZoneId(dto);
} catch (Exception e) {
this.logger.error("根据楼层id获取设备信息失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.listByZoneIds(dto);
} catch (Exception e) {
this.logger.error("根据楼层id集合获取设备信息失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto dto) throws DataAccessException {
try {
return this.acsElevatorDeviceMapper.listBuBuildingId(dto);
} catch (Exception e) {
this.logger.error("根据楼栋id获取设备信息失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.get(dto);
}
public AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.getById(dto);
}
public AcsElevatorDeviceResultDTO getByDeciveCode(String deviceCode) throws ServiceException {
AcsElevatorDeviceQueryDTO dto = new AcsElevatorDeviceQueryDTO();
dto.setDeviceCode(deviceCode);
return this.acsElevatorDeviceMapper.getByDeciveCode(dto);
}
public String getBuildingId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.getBuildingId(dto);
}
public String getBusinessId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
return this.acsElevatorDeviceMapper.getBusinessId(dto);
}
}
@@ -1,49 +1,45 @@
/* */ 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;
/* */
/* */ public Boolean save(String buildingId, String imageStoreId) throws ServiceException {
/* 30 */ return this.deviceImageStoreMapper.save(buildingId, imageStoreId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String getByBuildingId(String buildingId) throws ServiceException {
/* 41 */ return this.deviceImageStoreMapper.getByBuildingId(buildingId);
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\impl\DeviceImageStoreDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
public Boolean save(String buildingId, String imageStoreId) throws ServiceException {
return this.deviceImageStoreMapper.save(buildingId, imageStoreId);
}
public String getByBuildingId(String buildingId) throws ServiceException {
return this.deviceImageStoreMapper.getByBuildingId(buildingId);
}
}
@@ -1,20 +1,16 @@
package cn.cloudwalk.elevator.device.mapper;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
public interface AcsDeviceTaskMapper {
Integer insert(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateBingDevices(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateIsStop(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
AcsDeviceTaskDTO getById(String paramString);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\mapper\AcsDeviceTaskMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.device.mapper;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
public interface AcsDeviceTaskMapper {
Integer insert(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateBingDevices(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
Integer updateIsStop(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
AcsDeviceTaskDTO getById(String paramString);
}
@@ -1,42 +1,38 @@
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 {
int add(AcsElevatorDeviceAddDTO paramAcsElevatorDeviceAddDTO);
int edit(AcsElevatorDeviceEditDTO paramAcsElevatorDeviceEditDTO);
int delete(List<String> paramList);
List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto);
List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto);
List<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto paramAcsElevatorDeviceListByBuildingIdDto);
List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO paramAcsElevatorDeviceQueryByIdDTO);
AcsElevatorDeviceResultDTO getByDeciveCode(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
String getBuildingId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
String getBusinessId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\mapper\AcsElevatorDeviceMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
int add(AcsElevatorDeviceAddDTO paramAcsElevatorDeviceAddDTO);
int edit(AcsElevatorDeviceEditDTO paramAcsElevatorDeviceEditDTO);
int delete(List<String> paramList);
List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto);
List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto);
List<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto paramAcsElevatorDeviceListByBuildingIdDto);
List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO paramAcsElevatorDeviceQueryByIdDTO);
AcsElevatorDeviceResultDTO getByDeciveCode(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
String getBuildingId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
String getBusinessId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
}
@@ -1,15 +1,11 @@
package cn.cloudwalk.elevator.device.mapper;
import org.apache.ibatis.annotations.Param;
public interface DeviceImageStoreMapper {
Boolean save(@Param("buildingId") String paramString1, @Param("imageStoreId") String paramString2);
String getByBuildingId(String paramString);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\mapper\DeviceImageStoreMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.device.mapper;
import org.apache.ibatis.annotations.Param;
public interface DeviceImageStoreMapper {
Boolean save(@Param("buildingId") String paramString1, @Param("imageStoreId") String paramString2);
String getByBuildingId(String paramString);
}
@@ -1,36 +1,32 @@
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 {
Integer insert(AcsPassRuleAddDto paramAcsPassRuleAddDto) throws DataAccessException;
Integer update(AcsPassRuleEditDto paramAcsPassRuleEditDto) throws DataAccessException;
Integer delete(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto) throws DataAccessException;
CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto paramAcsPassRuleQueryDto) throws DataAccessException;
String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto paramAcsPassRuleIsDefaultDto) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dao\AcsPassRuleDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
Integer insert(AcsPassRuleAddDto paramAcsPassRuleAddDto) throws DataAccessException;
Integer update(AcsPassRuleEditDto paramAcsPassRuleEditDto) throws DataAccessException;
Integer delete(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto) throws DataAccessException;
CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto paramAcsPassRuleQueryDto) throws DataAccessException;
String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto paramAcsPassRuleIsDefaultDto) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
}
@@ -1,76 +1,72 @@
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 {
CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<String> listRuleByZoneIdExtDefault(String paramString);
List<ImageRuleRefResultDto> listByParentRule(List<String> paramList);
List<ImageRuleRefResultDto> listByPersonId(String paramString) throws DataAccessException;
List<ImageRuleRefResultDto> listByLabelId(String paramString) throws DataAccessException;
List<ImageRuleRefResultDto> listByOrgId(String paramString) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> paramList) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto paramAcsPassRuleQueryDto) throws DataAccessException;
List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto paramAcsPassRulePersonListDto) throws DataAccessException;
List<String> listPersonDelByZoneId(String paramString) throws DataAccessException;
List<String> listPersonDelByPersonId(String paramString) throws DataAccessException;
ImageRuleRefResultDto getDefaultByZoneId(String paramString) throws DataAccessException;
ImageRuleRefResultDto getById(String paramString) throws DataAccessException;
String getByRuleName(String paramString1, String paramString2) throws DataAccessException;
ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> paramList, String paramString) throws DataAccessException;
ImageRuleRefResultDto getDelByPersonIdAndZoneId(String paramString1, String paramString2) throws DataAccessException;
List<String> countPersonIdByZoneId(String paramString) throws DataAccessException;
Boolean insert(ImageRuleRefAddDto paramImageRuleRefAddDto) throws DataAccessException;
Boolean insertList(List<ImageRuleRefAddDto> paramList) throws DataAccessException;
Boolean deleteById(String paramString) throws DataAccessException;
Boolean deleteByZoneIdAndName(String paramString1, String paramString2) throws DataAccessException;
Boolean deleteByPersonIdsIsDel(List<String> paramList, String paramString) throws DataAccessException;
Boolean deleteByPersonId(String paramString1, String paramString2) throws DataAccessException;
Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto) throws DataAccessException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dao\ImageRuleRefDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<String> listRuleByZoneIdExtDefault(String paramString);
List<ImageRuleRefResultDto> listByParentRule(List<String> paramList);
List<ImageRuleRefResultDto> listByPersonId(String paramString) throws DataAccessException;
List<ImageRuleRefResultDto> listByLabelId(String paramString) throws DataAccessException;
List<ImageRuleRefResultDto> listByOrgId(String paramString) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> paramList) throws DataAccessException;
List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto paramAcsPassRuleQueryDto) throws DataAccessException;
List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto paramAcsPassRulePersonListDto) throws DataAccessException;
List<String> listPersonDelByZoneId(String paramString) throws DataAccessException;
List<String> listPersonDelByPersonId(String paramString) throws DataAccessException;
ImageRuleRefResultDto getDefaultByZoneId(String paramString) throws DataAccessException;
ImageRuleRefResultDto getById(String paramString) throws DataAccessException;
String getByRuleName(String paramString1, String paramString2) throws DataAccessException;
ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> paramList, String paramString) throws DataAccessException;
ImageRuleRefResultDto getDelByPersonIdAndZoneId(String paramString1, String paramString2) throws DataAccessException;
List<String> countPersonIdByZoneId(String paramString) throws DataAccessException;
Boolean insert(ImageRuleRefAddDto paramImageRuleRefAddDto) throws DataAccessException;
Boolean insertList(List<ImageRuleRefAddDto> paramList) throws DataAccessException;
Boolean deleteById(String paramString) throws DataAccessException;
Boolean deleteByZoneIdAndName(String paramString1, String paramString2) throws DataAccessException;
Boolean deleteByPersonIdsIsDel(List<String> paramList, String paramString) throws DataAccessException;
Boolean deleteByPersonId(String paramString1, String paramString2) throws DataAccessException;
Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto) throws DataAccessException;
}
@@ -1,154 +1,150 @@
/* */ 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() {
/* 70 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 74 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getZoneName() {
/* 78 */ return this.zoneName;
/* */ }
/* */
/* */ public void setZoneName(String zoneName) {
/* 82 */ this.zoneName = zoneName;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 86 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 90 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getName() {
/* 94 */ return this.name;
/* */ }
/* */
/* */ public void setName(String name) {
/* 98 */ this.name = name;
/* */ }
/* */
/* */ public String getValidDateCron() {
/* 102 */ return this.validDateCron;
/* */ }
/* */
/* */ public void setValidDateCron(String validDateCron) {
/* 106 */ this.validDateCron = validDateCron;
/* */ }
/* */
/* */ public String getValidDateJson() {
/* 110 */ return this.validDateJson;
/* */ }
/* */
/* */ public void setValidDateJson(String validDateJson) {
/* 114 */ this.validDateJson = validDateJson;
/* */ }
/* */
/* */ public Long getBeginDate() {
/* 118 */ return this.beginDate;
/* */ }
/* */
/* */ public void setBeginDate(Long beginDate) {
/* 122 */ this.beginDate = beginDate;
/* */ }
/* */
/* */ public Long getEndDate() {
/* 126 */ return this.endDate;
/* */ }
/* */
/* */ public void setEndDate(Long endDate) {
/* 130 */ this.endDate = endDate;
/* */ }
/* */
/* */ public String getImageStoreId() {
/* 134 */ return this.imageStoreId;
/* */ }
/* */
/* */ public void setImageStoreId(String imageStoreId) {
/* 138 */ this.imageStoreId = imageStoreId;
/* */ }
/* */
/* */ public Integer getIsDefault() {
/* 142 */ return this.isDefault;
/* */ }
/* */
/* */ public void setIsDefault(Integer isDefault) {
/* 146 */ this.isDefault = isDefault;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleAddDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,100 +1,96 @@
/* */ 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() {
/* 48 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 52 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getOrgId() {
/* 56 */ return this.orgId;
/* */ }
/* */
/* */ public void setOrgId(String orgId) {
/* 60 */ this.orgId = orgId;
/* */ }
/* */
/* */ public String getLabelId() {
/* 64 */ return this.labelId;
/* */ }
/* */
/* */ public void setLabelId(String labelId) {
/* 68 */ this.labelId = labelId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 72 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 76 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 80 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 84 */ this.businessId = businessId;
/* */ }
/* */
/* */ public List<String> getIds() {
/* 88 */ return this.ids;
/* */ }
/* */
/* */ public void setIds(List<String> ids) {
/* 92 */ this.ids = ids;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleDeleteDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,114 +1,110 @@
/* */ 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() {
/* 54 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 58 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getName() {
/* 62 */ return this.name;
/* */ }
/* */
/* */ public void setName(String name) {
/* 66 */ this.name = name;
/* */ }
/* */
/* */ public String getValidDateCron() {
/* 70 */ return this.validDateCron;
/* */ }
/* */
/* */ public void setValidDateCron(String validDateCron) {
/* 74 */ this.validDateCron = validDateCron;
/* */ }
/* */
/* */ public String getValidDateJson() {
/* 78 */ return this.validDateJson;
/* */ }
/* */
/* */ public void setValidDateJson(String validDateJson) {
/* 82 */ this.validDateJson = validDateJson;
/* */ }
/* */
/* */ public Long getBeginDate() {
/* 86 */ return this.beginDate;
/* */ }
/* */
/* */ public void setBeginDate(Long beginDate) {
/* 90 */ this.beginDate = beginDate;
/* */ }
/* */
/* */ public Long getEndDate() {
/* 94 */ return this.endDate;
/* */ }
/* */
/* */ public void setEndDate(Long endDate) {
/* 98 */ this.endDate = endDate;
/* */ }
/* */
/* */ public String getImageStoreId() {
/* 102 */ return this.imageStoreId;
/* */ }
/* */
/* */ public void setImageStoreId(String imageStoreId) {
/* 106 */ this.imageStoreId = imageStoreId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleEditDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,86 +1,82 @@
/* */ 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() {
/* 42 */ return this.imageStoreIds;
/* */ }
/* */
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
/* 46 */ this.imageStoreIds = imageStoreIds;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 50 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 54 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getPersonId() {
/* 58 */ return this.personId;
/* */ }
/* */
/* */ public void setPersonId(String personId) {
/* 62 */ this.personId = personId;
/* */ }
/* */
/* */ public List<String> getIncludeOrganizations() {
/* 66 */ return this.includeOrganizations;
/* */ }
/* */
/* */ public void setIncludeOrganizations(List<String> includeOrganizations) {
/* 70 */ this.includeOrganizations = includeOrganizations;
/* */ }
/* */
/* */ public List<String> getIncludeLabels() {
/* 74 */ return this.includeLabels;
/* */ }
/* */
/* */ public void setIncludeLabels(List<String> includeLabels) {
/* 78 */ this.includeLabels = includeLabels;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleImageDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,58 +1,54 @@
/* */ package cn.cloudwalk.elevator.passrule.dto;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsPassRuleImageResultDto
/* */ {
/* */ private String zoneId;
/* */ private String zoneName;
/* */ private String imageStoreId;
/* */
/* */ public String getZoneId() {
/* 30 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 34 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getZoneName() {
/* 38 */ return this.zoneName;
/* */ }
/* */
/* */ public void setZoneName(String zoneName) {
/* 42 */ this.zoneName = zoneName;
/* */ }
/* */
/* */ public String getImageStoreId() {
/* 46 */ return this.imageStoreId;
/* */ }
/* */
/* */ public void setImageStoreId(String imageStoreId) {
/* 50 */ this.imageStoreId = imageStoreId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleImageResultDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,50 +1,46 @@
/* */ 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() {
/* 30 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 34 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getZoneId() {
/* 38 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 42 */ this.zoneId = zoneId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleIsDefaultDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,58 +1,54 @@
/* */ package cn.cloudwalk.elevator.passrule.dto;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsPassRuleLabelResultDto
/* */ {
/* */ private String zoneId;
/* */ private String zoneName;
/* */ private String labelId;
/* */
/* */ public String getZoneId() {
/* 30 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 34 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getZoneName() {
/* 38 */ return this.zoneName;
/* */ }
/* */
/* */ public void setZoneName(String zoneName) {
/* 42 */ this.zoneName = zoneName;
/* */ }
/* */
/* */ public String getLabelId() {
/* 46 */ return this.labelId;
/* */ }
/* */
/* */ public void setLabelId(String labelId) {
/* 50 */ this.labelId = labelId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleLabelResultDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,72 +1,68 @@
/* */ 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() {
/* 36 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 40 */ this.businessId = businessId;
/* */ }
/* */
/* */ public List<String> getPersonIds() {
/* 44 */ return this.personIds;
/* */ }
/* */
/* */ public void setPersonIds(List<String> personIds) {
/* 48 */ this.personIds = personIds;
/* */ }
/* */
/* */ public List<String> getIncludeOrganizations() {
/* 52 */ return this.includeOrganizations;
/* */ }
/* */
/* */ public void setIncludeOrganizations(List<String> includeOrganizations) {
/* 56 */ this.includeOrganizations = includeOrganizations;
/* */ }
/* */
/* */ public List<String> getIncludeLabels() {
/* 60 */ return this.includeLabels;
/* */ }
/* */
/* */ public void setIncludeLabels(List<String> includeLabels) {
/* 64 */ this.includeLabels = includeLabels;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRulePersonListDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,47 +1,43 @@
/* */ package cn.cloudwalk.elevator.passrule.dto;
/* */
/* */ import java.util.List;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsPassRulePersonListResultDto
/* */ {
/* */ private String personId;
/* */ private List<AcsPassRuleImageResultDto> zoneList;
/* */
/* */ public String getPersonId() {
/* 27 */ return this.personId;
/* */ }
/* */
/* */ public void setPersonId(String personId) {
/* 31 */ this.personId = personId;
/* */ }
/* */
/* */ public List<AcsPassRuleImageResultDto> getZoneList() {
/* 35 */ return this.zoneList;
/* */ }
/* */
/* */ public void setZoneList(List<AcsPassRuleImageResultDto> zoneList) {
/* 39 */ this.zoneList = zoneList;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRulePersonListResultDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.passrule.dto;
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;
}
}
@@ -1,114 +1,110 @@
/* */ 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() {
/* 54 */ return this.zoneIds;
/* */ }
/* */
/* */ public void setZoneIds(List<String> zoneIds) {
/* 58 */ this.zoneIds = zoneIds;
/* */ }
/* */
/* */ public List<String> getIds() {
/* 62 */ return this.ids;
/* */ }
/* */
/* */ public void setIds(List<String> ids) {
/* 66 */ this.ids = ids;
/* */ }
/* */
/* */ public String getZoneId() {
/* 70 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 74 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getId() {
/* 78 */ return this.id;
/* */ }
/* */
/* */ public void setId(String id) {
/* 82 */ this.id = id;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 86 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 90 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getImageStoreId() {
/* 94 */ return this.imageStoreId;
/* */ }
/* */
/* */ public void setImageStoreId(String imageStoreId) {
/* 98 */ this.imageStoreId = imageStoreId;
/* */ }
/* */
/* */ public List<String> getImageStoreIds() {
/* 102 */ return this.imageStoreIds;
/* */ }
/* */
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
/* 106 */ this.imageStoreIds = imageStoreIds;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleQueryDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,153 +1,149 @@
/* */ 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() {
/* 69 */ return this.zoneId;
/* */ }
/* */
/* */ public void setZoneId(String zoneId) {
/* 73 */ this.zoneId = zoneId;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 77 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 81 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getName() {
/* 85 */ return this.name;
/* */ }
/* */
/* */ public void setName(String name) {
/* 89 */ this.name = name;
/* */ }
/* */
/* */ public String getValidDateCron() {
/* 93 */ return this.validDateCron;
/* */ }
/* */
/* */ public void setValidDateCron(String validDateCron) {
/* 97 */ this.validDateCron = validDateCron;
/* */ }
/* */
/* */ public String getValidDateJson() {
/* 101 */ return this.validDateJson;
/* */ }
/* */
/* */ public void setValidDateJson(String validDateJson) {
/* 105 */ this.validDateJson = validDateJson;
/* */ }
/* */
/* */ public Long getBeginDate() {
/* 109 */ return this.beginDate;
/* */ }
/* */
/* */ public void setBeginDate(Long beginDate) {
/* 113 */ this.beginDate = beginDate;
/* */ }
/* */
/* */ public Long getEndDate() {
/* 117 */ return this.endDate;
/* */ }
/* */
/* */ public void setEndDate(Long endDate) {
/* 121 */ this.endDate = endDate;
/* */ }
/* */
/* */ public String getImageStoreId() {
/* 125 */ return this.imageStoreId;
/* */ }
/* */
/* */ public void setImageStoreId(String imageStoreId) {
/* 129 */ this.imageStoreId = imageStoreId;
/* */ }
/* */
/* */ public String getZoneName() {
/* 133 */ return this.zoneName;
/* */ }
/* */
/* */ public void setZoneName(String zoneName) {
/* 137 */ this.zoneName = zoneName;
/* */ }
/* */
/* */ public Integer getIsDefault() {
/* 141 */ return this.isDefault;
/* */ }
/* */
/* */ public void setIsDefault(Integer isDefault) {
/* 145 */ this.isDefault = isDefault;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleResultDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,68 +1,64 @@
/* */ package cn.cloudwalk.elevator.passrule.dto;
/* */
/* */ 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;
/* */
/* 17 */ 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; Object this$businessId = getBusinessId(), other$businessId = other.getBusinessId(); if ((this$businessId == null) ? (other$businessId != null) : !this$businessId.equals(other$businessId)) return false; Object this$name = getName(), other$name = other.getName(); if ((this$name == null) ? (other$name != null) : !this$name.equals(other$name)) return false; Object this$zoneId = getZoneId(), other$zoneId = other.getZoneId(); if ((this$zoneId == null) ? (other$zoneId != null) : !this$zoneId.equals(other$zoneId)) return false; Object this$zoneName = getZoneName(), other$zoneName = other.getZoneName(); if ((this$zoneName == null) ? (other$zoneName != null) : !this$zoneName.equals(other$zoneName)) return false; Object this$personId = getPersonId(), other$personId = other.getPersonId(); if ((this$personId == null) ? (other$personId != null) : !this$personId.equals(other$personId)) return false; Object<String> this$includeLabels = (Object<String>)getIncludeLabels(), other$includeLabels = (Object<String>)other.getIncludeLabels(); if ((this$includeLabels == null) ? (other$includeLabels != null) : !this$includeLabels.equals(other$includeLabels)) return false; Object<String> this$includeOrganizations = (Object<String>)getIncludeOrganizations(), other$includeOrganizations = (Object<String>)other.getIncludeOrganizations(); if ((this$includeOrganizations == null) ? (other$includeOrganizations != null) : !this$includeOrganizations.equals(other$includeOrganizations)) return false; Object<String> this$excludeLabels = (Object<String>)getExcludeLabels(), other$excludeLabels = (Object<String>)other.getExcludeLabels(); return !((this$excludeLabels == null) ? (other$excludeLabels != null) : !this$excludeLabels.equals(other$excludeLabels)); } protected boolean canEqual(Object other) { return other instanceof ImageRuleRefListResult; } public int hashCode() { int PRIME = 59; result = 1; Object $businessId = getBusinessId(); result = result * 59 + (($businessId == null) ? 43 : $businessId.hashCode()); Object $name = getName(); result = result * 59 + (($name == null) ? 43 : $name.hashCode()); Object $zoneId = getZoneId(); result = result * 59 + (($zoneId == null) ? 43 : $zoneId.hashCode()); Object $zoneName = getZoneName(); result = result * 59 + (($zoneName == null) ? 43 : $zoneName.hashCode()); Object $personId = getPersonId(); result = result * 59 + (($personId == null) ? 43 : $personId.hashCode()); Object<String> $includeLabels = (Object<String>)getIncludeLabels(); result = result * 59 + (($includeLabels == null) ? 43 : $includeLabels.hashCode()); Object<String> $includeOrganizations = (Object<String>)getIncludeOrganizations(); result = result * 59 + (($includeOrganizations == null) ? 43 : $includeOrganizations.hashCode()); Object<String> $excludeLabels = (Object<String>)getExcludeLabels(); return result * 59 + (($excludeLabels == null) ? 43 : $excludeLabels.hashCode()); } public String toString() { return "ImageRuleRefListResult(businessId=" + getBusinessId() + ", name=" + getName() + ", zoneId=" + getZoneId() + ", zoneName=" + getZoneName() + ", personId=" + getPersonId() + ", includeLabels=" + getIncludeLabels() + ", includeOrganizations=" + getIncludeOrganizations() + ", excludeLabels=" + getExcludeLabels() + ")"; }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String getBusinessId() {
/* 25 */ return this.businessId;
/* */ }
/* */
/* */
/* */ public String getName() {
/* 30 */ return this.name;
/* */ }
/* */
/* */
/* */ public String getZoneId() {
/* 35 */ return this.zoneId;
/* */ }
/* */
/* */
/* */ public String getZoneName() {
/* 40 */ return this.zoneName;
/* */ }
/* */
/* */
/* */ public String getPersonId() {
/* 45 */ return this.personId;
/* */ }
/* */
/* */
/* */ public List<String> getIncludeLabels() {
/* 50 */ return this.includeLabels;
/* */ }
/* */
/* */
/* */ public List<String> getIncludeOrganizations() {
/* 55 */ return this.includeOrganizations;
/* */ }
/* */
/* */
/* */ public List<String> getExcludeLabels() {
/* 60 */ return this.excludeLabels;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\ImageRuleRefListResult.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.passrule.dto;
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 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; Object this$businessId = getBusinessId(), other$businessId = other.getBusinessId(); if ((this$businessId == null) ? (other$businessId != null) : !this$businessId.equals(other$businessId)) return false; Object this$name = getName(), other$name = other.getName(); if ((this$name == null) ? (other$name != null) : !this$name.equals(other$name)) return false; Object this$zoneId = getZoneId(), other$zoneId = other.getZoneId(); if ((this$zoneId == null) ? (other$zoneId != null) : !this$zoneId.equals(other$zoneId)) return false; Object this$zoneName = getZoneName(), other$zoneName = other.getZoneName(); if ((this$zoneName == null) ? (other$zoneName != null) : !this$zoneName.equals(other$zoneName)) return false; Object this$personId = getPersonId(), other$personId = other.getPersonId(); if ((this$personId == null) ? (other$personId != null) : !this$personId.equals(other$personId)) return false; Object<String> this$includeLabels = (Object<String>)getIncludeLabels(), other$includeLabels = (Object<String>)other.getIncludeLabels(); if ((this$includeLabels == null) ? (other$includeLabels != null) : !this$includeLabels.equals(other$includeLabels)) return false; Object<String> this$includeOrganizations = (Object<String>)getIncludeOrganizations(), other$includeOrganizations = (Object<String>)other.getIncludeOrganizations(); if ((this$includeOrganizations == null) ? (other$includeOrganizations != null) : !this$includeOrganizations.equals(other$includeOrganizations)) return false; Object<String> this$excludeLabels = (Object<String>)getExcludeLabels(), other$excludeLabels = (Object<String>)other.getExcludeLabels(); return !((this$excludeLabels == null) ? (other$excludeLabels != null) : !this$excludeLabels.equals(other$excludeLabels)); } protected boolean canEqual(Object other) { return other instanceof ImageRuleRefListResult; } public int hashCode() { int PRIME = 59; result = 1; Object $businessId = getBusinessId(); result = result * 59 + (($businessId == null) ? 43 : $businessId.hashCode()); Object $name = getName(); result = result * 59 + (($name == null) ? 43 : $name.hashCode()); Object $zoneId = getZoneId(); result = result * 59 + (($zoneId == null) ? 43 : $zoneId.hashCode()); Object $zoneName = getZoneName(); result = result * 59 + (($zoneName == null) ? 43 : $zoneName.hashCode()); Object $personId = getPersonId(); result = result * 59 + (($personId == null) ? 43 : $personId.hashCode()); Object<String> $includeLabels = (Object<String>)getIncludeLabels(); result = result * 59 + (($includeLabels == null) ? 43 : $includeLabels.hashCode()); Object<String> $includeOrganizations = (Object<String>)getIncludeOrganizations(); result = result * 59 + (($includeOrganizations == null) ? 43 : $includeOrganizations.hashCode()); Object<String> $excludeLabels = (Object<String>)getExcludeLabels(); return result * 59 + (($excludeLabels == null) ? 43 : $excludeLabels.hashCode()); } public String toString() { return "ImageRuleRefListResult(businessId=" + getBusinessId() + ", name=" + getName() + ", zoneId=" + getZoneId() + ", zoneName=" + getZoneName() + ", personId=" + getPersonId() + ", includeLabels=" + getIncludeLabels() + ", includeOrganizations=" + getIncludeOrganizations() + ", excludeLabels=" + getExcludeLabels() + ")"; }
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;
}
}
@@ -1,104 +1,100 @@
/* */ 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;
/* */
/* */ public void setId(String id) {
/* 18 */ this.id = id; } 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 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; }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String getId() {
/* 26 */ return this.id;
/* */ }
/* */
/* */
/* */ public Long getCreateTime() {
/* 31 */ return this.createTime;
/* */ }
/* */
/* */
/* */ public Long getLastUpdateTime() {
/* 36 */ return this.lastUpdateTime;
/* */ }
/* */
/* */
/* */ public String getBusinessId() {
/* 41 */ return this.businessId;
/* */ }
/* */
/* */
/* */ public String getName() {
/* 46 */ return this.name;
/* */ }
/* */
/* */
/* */ public String getZoneId() {
/* 51 */ return this.zoneId;
/* */ }
/* */
/* */
/* */ public String getZoneName() {
/* 56 */ return this.zoneName;
/* */ }
/* */
/* */
/* */ public String getPersonId() {
/* 61 */ return this.personId;
/* */ }
/* */
/* */
/* */ public String getIncludeLabels() {
/* 66 */ return this.includeLabels;
/* */ }
/* */
/* */
/* */ public String getIncludeOrganizations() {
/* 71 */ return this.includeOrganizations;
/* */ }
/* */
/* */
/* */ public String getExcludeLabels() {
/* 76 */ return this.excludeLabels;
/* */ }
/* */
/* */
/* */ public Long getStartTime() {
/* 81 */ return this.startTime;
/* */ }
/* */
/* */
/* */ public Long getEndTime() {
/* 86 */ return this.endTime;
/* */ }
/* */
/* */
/* */ public Integer getIsDefault() {
/* 91 */ return this.isDefault;
/* */ }
/* */
/* */
/* */ public String getParentRule() {
/* 96 */ return this.parentRule;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\ImageRuleRefResultDto.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
public void setId(String id) {
this.id = id; } 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 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; }
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;
}
}
@@ -1,106 +1,102 @@
/* */ 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.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;
/* 46 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
/* */
/* */
/* */ public Integer insert(AcsPassRuleAddDto dto) {
/* 50 */ return this.acsPassRuleMapper.insert(dto);
/* */ }
/* */
/* */
/* */ public Integer update(AcsPassRuleEditDto dto) {
/* 55 */ return this.acsPassRuleMapper.update(dto);
/* */ }
/* */
/* */
/* */ public Integer delete(AcsPassRuleDeleteDto dto) {
/* 60 */ return this.acsPassRuleMapper.delete(dto);
/* */ }
/* */
/* */
/* */ public CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) {
/* 65 */ PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
/* 66 */ Page<AcsPassRuleResultDto> result = (Page<AcsPassRuleResultDto>)this.acsPassRuleMapper.list(dto);
/* 67 */ return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), AcsPassRuleResultDto.class), page, result
/* 68 */ .getTotal());
/* */ }
/* */
/* */
/* */ public List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto dto) throws DataAccessException {
/* */ try {
/* 74 */ return this.acsPassRuleMapper.list(dto);
/* 75 */ } catch (Exception e) {
/* 76 */ this.logger.error("查询紧通行规则异常,原因:[{}]", e.getMessage(), e);
/* 77 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto dto) throws DataAccessException {
/* */ try {
/* 84 */ return this.acsPassRuleMapper.getIsDefaultByZoneId(dto);
/* 85 */ } catch (Exception e) {
/* 86 */ this.logger.error("根据楼层id获取默认图库id异常,原因:[{}]", e.getMessage(), e);
/* 87 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto dto) throws DataAccessException {
/* */ try {
/* 94 */ return this.acsPassRuleMapper.listByImageId(dto);
/* 95 */ } catch (Exception e) {
/* 96 */ this.logger.error("根据图库id集合查询对应楼层信息异常,原因:[{}]", e.getMessage(), e);
/* 97 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\impl\AcsPassRuleDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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.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(getClass());
public Integer insert(AcsPassRuleAddDto dto) {
return this.acsPassRuleMapper.insert(dto);
}
public Integer update(AcsPassRuleEditDto dto) {
return this.acsPassRuleMapper.update(dto);
}
public Integer delete(AcsPassRuleDeleteDto dto) {
return this.acsPassRuleMapper.delete(dto);
}
public CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) {
PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
Page<AcsPassRuleResultDto> result = (Page<AcsPassRuleResultDto>)this.acsPassRuleMapper.list(dto);
return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), AcsPassRuleResultDto.class), page, result
.getTotal());
}
public List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto dto) throws DataAccessException {
try {
return this.acsPassRuleMapper.list(dto);
} catch (Exception e) {
this.logger.error("查询紧通行规则异常,原因:[{}]", e.getMessage(), e);
throw new DataAccessException(e);
}
}
public String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto dto) throws DataAccessException {
try {
return this.acsPassRuleMapper.getIsDefaultByZoneId(dto);
} catch (Exception e) {
this.logger.error("根据楼层id获取默认图库id异常,原因:[{}]", e.getMessage(), e);
throw new DataAccessException(e);
}
}
public List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto dto) throws DataAccessException {
try {
return this.acsPassRuleMapper.listByImageId(dto);
} catch (Exception e) {
this.logger.error("根据图库id集合查询对应楼层信息异常,原因:[{}]", e.getMessage(), e);
throw new DataAccessException(e);
}
}
}
@@ -1,370 +1,366 @@
/* */ 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.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;
/* 47 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) throws DataAccessException {
/* 60 */ PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
/* 61 */ Page<ImageRuleRefResultDto> result = (Page<ImageRuleRefResultDto>)this.imageRuleRefMapper.page(dto);
/* 62 */ return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), ImageRuleRefResultDto.class), page, result
/* 63 */ .getTotal());
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<String> listRuleByZoneIdExtDefault(String zoneId) {
/* 74 */ return this.imageRuleRefMapper.listRuleByZoneIdExtDefault(zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<ImageRuleRefResultDto> listByParentRule(List<String> parentRuleIds) {
/* 85 */ return this.imageRuleRefMapper.listByParentRule(parentRuleIds);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<ImageRuleRefResultDto> listByPersonId(String personId) throws DataAccessException {
/* 96 */ return this.imageRuleRefMapper.listByPersonId(personId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<ImageRuleRefResultDto> listByLabelId(String labelId) throws DataAccessException {
/* 107 */ return this.imageRuleRefMapper.listByLabelId(labelId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<ImageRuleRefResultDto> listByOrgId(String orgId) throws DataAccessException {
/* 118 */ return this.imageRuleRefMapper.listByOrgId(orgId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto dto) throws DataAccessException {
/* 130 */ return this.imageRuleRefMapper.listByPersonInfo(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
/* 142 */ return this.imageRuleRefMapper.listByRestructure(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
/* 154 */ return this.imageRuleRefMapper.listFloorsByRestructure(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> zoneIds) throws DataAccessException {
/* 166 */ return this.imageRuleRefMapper.listZoneInfoByIds(zoneIds);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto dto) throws DataAccessException {
/* 178 */ return this.imageRuleRefMapper.listByNotZoneIds(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto dto) throws DataAccessException {
/* 190 */ return this.imageRuleRefMapper.listByPersonList(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<String> listPersonDelByZoneId(String zoneId) throws DataAccessException {
/* 201 */ return this.imageRuleRefMapper.listPersonDelByZoneId(zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<String> listPersonDelByPersonId(String personId) throws DataAccessException {
/* 212 */ return this.imageRuleRefMapper.listPersonDelByPersonId(personId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public ImageRuleRefResultDto getDefaultByZoneId(String zoneId) throws DataAccessException {
/* 223 */ return this.imageRuleRefMapper.getDefaultByZoneId(zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public ImageRuleRefResultDto getById(String id) throws DataAccessException {
/* 234 */ return this.imageRuleRefMapper.getById(id);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String getByRuleName(String ruleName, String zoneId) throws DataAccessException {
/* 246 */ return this.imageRuleRefMapper.getByRuleName(ruleName, zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> personId, String zoneId) throws DataAccessException {
/* 258 */ return this.imageRuleRefMapper.getByPersonIdAndZoneId(personId, zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public ImageRuleRefResultDto getDelByPersonIdAndZoneId(String personId, String zoneId) throws DataAccessException {
/* 270 */ return this.imageRuleRefMapper.getDelByPersonIdAndZoneId(personId, zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<String> countPersonIdByZoneId(String zoneId) throws DataAccessException {
/* 281 */ return this.imageRuleRefMapper.countPersonIdByZoneId(zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean insert(ImageRuleRefAddDto dto) {
/* 291 */ return this.imageRuleRefMapper.insert(dto);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean insertList(List<ImageRuleRefAddDto> insertList) throws DataAccessException {
/* 302 */ return this.imageRuleRefMapper.insertList(insertList);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean deleteById(String id) throws DataAccessException {
/* 313 */ this.imageRuleRefMapper.deleteById(id);
/* 314 */ this.imageRuleRefMapper.deleteByParentRule(id);
/* 315 */ return Boolean.valueOf(true);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean deleteByZoneIdAndName(String zoneId, String oldName) throws DataAccessException {
/* 327 */ return this.imageRuleRefMapper.deleteByZoneIdAndName(zoneId, oldName);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean deleteByPersonIdsIsDel(List<String> personId, String zoneId) throws DataAccessException {
/* 339 */ return this.imageRuleRefMapper.deleteByPersonIdsIsDel(personId, zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean deleteByPersonId(String personId, String zoneId) throws DataAccessException {
/* 351 */ return this.imageRuleRefMapper.deleteByPersonId(personId, zoneId);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto dto) throws DataAccessException {
/* 362 */ return this.imageRuleRefMapper.deleteByOrgAndLabel(dto);
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\impl\ImageRuleRefDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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.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(getClass());
public CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) throws DataAccessException {
PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
Page<ImageRuleRefResultDto> result = (Page<ImageRuleRefResultDto>)this.imageRuleRefMapper.page(dto);
return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), ImageRuleRefResultDto.class), page, result
.getTotal());
}
public List<String> listRuleByZoneIdExtDefault(String zoneId) {
return this.imageRuleRefMapper.listRuleByZoneIdExtDefault(zoneId);
}
public List<ImageRuleRefResultDto> listByParentRule(List<String> parentRuleIds) {
return this.imageRuleRefMapper.listByParentRule(parentRuleIds);
}
public List<ImageRuleRefResultDto> listByPersonId(String personId) throws DataAccessException {
return this.imageRuleRefMapper.listByPersonId(personId);
}
public List<ImageRuleRefResultDto> listByLabelId(String labelId) throws DataAccessException {
return this.imageRuleRefMapper.listByLabelId(labelId);
}
public List<ImageRuleRefResultDto> listByOrgId(String orgId) throws DataAccessException {
return this.imageRuleRefMapper.listByOrgId(orgId);
}
public List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByPersonInfo(dto);
}
public List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByRestructure(dto);
}
public List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listFloorsByRestructure(dto);
}
public List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> zoneIds) throws DataAccessException {
return this.imageRuleRefMapper.listZoneInfoByIds(zoneIds);
}
public List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByNotZoneIds(dto);
}
public List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto dto) throws DataAccessException {
return this.imageRuleRefMapper.listByPersonList(dto);
}
public List<String> listPersonDelByZoneId(String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.listPersonDelByZoneId(zoneId);
}
public List<String> listPersonDelByPersonId(String personId) throws DataAccessException {
return this.imageRuleRefMapper.listPersonDelByPersonId(personId);
}
public ImageRuleRefResultDto getDefaultByZoneId(String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getDefaultByZoneId(zoneId);
}
public ImageRuleRefResultDto getById(String id) throws DataAccessException {
return this.imageRuleRefMapper.getById(id);
}
public String getByRuleName(String ruleName, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getByRuleName(ruleName, zoneId);
}
public ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getByPersonIdAndZoneId(personId, zoneId);
}
public ImageRuleRefResultDto getDelByPersonIdAndZoneId(String personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.getDelByPersonIdAndZoneId(personId, zoneId);
}
public List<String> countPersonIdByZoneId(String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.countPersonIdByZoneId(zoneId);
}
public Boolean insert(ImageRuleRefAddDto dto) {
return this.imageRuleRefMapper.insert(dto);
}
public Boolean insertList(List<ImageRuleRefAddDto> insertList) throws DataAccessException {
return this.imageRuleRefMapper.insertList(insertList);
}
public Boolean deleteById(String id) throws DataAccessException {
this.imageRuleRefMapper.deleteById(id);
this.imageRuleRefMapper.deleteByParentRule(id);
return Boolean.valueOf(true);
}
public Boolean deleteByZoneIdAndName(String zoneId, String oldName) throws DataAccessException {
return this.imageRuleRefMapper.deleteByZoneIdAndName(zoneId, oldName);
}
public Boolean deleteByPersonIdsIsDel(List<String> personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.deleteByPersonIdsIsDel(personId, zoneId);
}
public Boolean deleteByPersonId(String personId, String zoneId) throws DataAccessException {
return this.imageRuleRefMapper.deleteByPersonId(personId, zoneId);
}
public Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto dto) throws DataAccessException {
return this.imageRuleRefMapper.deleteByOrgAndLabel(dto);
}
}
@@ -1,31 +1,27 @@
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 {
Integer insert(AcsPassRuleAddDto paramAcsPassRuleAddDto);
Integer update(AcsPassRuleEditDto paramAcsPassRuleEditDto);
Integer delete(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto);
List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto paramAcsPassRuleIsDefaultDto);
List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto paramAcsPassRuleImageDto);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\mapper\AcsPassRuleMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
Integer insert(AcsPassRuleAddDto paramAcsPassRuleAddDto);
Integer update(AcsPassRuleEditDto paramAcsPassRuleEditDto);
Integer delete(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto);
List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto paramAcsPassRuleIsDefaultDto);
List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto paramAcsPassRuleImageDto);
}
@@ -1,76 +1,72 @@
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 {
List<ImageRuleRefResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
List<String> listRuleByZoneIdExtDefault(String paramString);
List<String> listPersonDelByZoneId(@Param("zoneId") String paramString);
List<String> listPersonDelByPersonId(@Param("personId") String paramString);
List<ImageRuleRefResultDto> listByParentRule(@Param("parentRuleIds") List<String> paramList);
List<ImageRuleRefResultDto> listByPersonId(@Param("personId") String paramString);
List<ImageRuleRefResultDto> listByLabelId(@Param("labelId") String paramString);
List<ImageRuleRefResultDto> listByOrgId(@Param("orgId") String paramString);
List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto paramAcsPassRuleImageDto);
List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto);
List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto);
List<AcsPassRuleImageResultDto> listZoneInfoByIds(@Param("zoneIds") List<String> paramList);
List<AcsPassRuleImageResultDto> listByNotZoneIds(@Param("request") AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto paramAcsPassRulePersonListDto);
ImageRuleRefResultDto getDefaultByZoneId(String paramString);
ImageRuleRefResultDto getById(String paramString);
String getByRuleName(@Param("ruleName") String paramString1, @Param("zoneId") String paramString2);
ImageRuleRefResultDto getByPersonIdAndZoneId(@Param("personIds") List<String> paramList, @Param("zoneId") String paramString);
ImageRuleRefResultDto getDelByPersonIdAndZoneId(@Param("personId") String paramString1, @Param("zoneId") String paramString2);
List<String> countPersonIdByZoneId(String paramString);
Boolean insert(ImageRuleRefAddDto paramImageRuleRefAddDto);
Boolean insertList(@Param("dtoList") List<ImageRuleRefAddDto> paramList);
Boolean deleteByZoneIdAndName(String paramString1, String paramString2);
Boolean deleteById(String paramString);
Boolean deleteByParentRule(String paramString);
Boolean deleteByPersonIdsIsDel(@Param("personIds") List<String> paramList, @Param("zoneId") String paramString);
Boolean deleteByPersonId(@Param("personId") String paramString1, @Param("zoneId") String paramString2);
Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\mapper\ImageRuleRefMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
List<ImageRuleRefResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
List<String> listRuleByZoneIdExtDefault(String paramString);
List<String> listPersonDelByZoneId(@Param("zoneId") String paramString);
List<String> listPersonDelByPersonId(@Param("personId") String paramString);
List<ImageRuleRefResultDto> listByParentRule(@Param("parentRuleIds") List<String> paramList);
List<ImageRuleRefResultDto> listByPersonId(@Param("personId") String paramString);
List<ImageRuleRefResultDto> listByLabelId(@Param("labelId") String paramString);
List<ImageRuleRefResultDto> listByOrgId(@Param("orgId") String paramString);
List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto paramAcsPassRuleImageDto);
List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto);
List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto);
List<AcsPassRuleImageResultDto> listZoneInfoByIds(@Param("zoneIds") List<String> paramList);
List<AcsPassRuleImageResultDto> listByNotZoneIds(@Param("request") AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto paramAcsPassRulePersonListDto);
ImageRuleRefResultDto getDefaultByZoneId(String paramString);
ImageRuleRefResultDto getById(String paramString);
String getByRuleName(@Param("ruleName") String paramString1, @Param("zoneId") String paramString2);
ImageRuleRefResultDto getByPersonIdAndZoneId(@Param("personIds") List<String> paramList, @Param("zoneId") String paramString);
ImageRuleRefResultDto getDelByPersonIdAndZoneId(@Param("personId") String paramString1, @Param("zoneId") String paramString2);
List<String> countPersonIdByZoneId(String paramString);
Boolean insert(ImageRuleRefAddDto paramImageRuleRefAddDto);
Boolean insertList(@Param("dtoList") List<ImageRuleRefAddDto> paramList);
Boolean deleteByZoneIdAndName(String paramString1, String paramString2);
Boolean deleteById(String paramString);
Boolean deleteByParentRule(String paramString);
Boolean deleteByPersonIdsIsDel(@Param("personIds") List<String> paramList, @Param("zoneId") String paramString);
Boolean deleteByPersonId(@Param("personId") String paramString1, @Param("zoneId") String paramString2);
Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto);
}
@@ -1,40 +1,36 @@
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 {
Integer add(AcsElevatorRecordAddDTO paramAcsElevatorRecordAddDTO) throws DataAccessException;
int update(AcsOpenDoorRecordEditDTO paramAcsOpenDoorRecordEditDTO) throws DataAccessException;
CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO paramAcsOpenDoorRecordQueryDTO) throws DataAccessException;
AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String paramString) throws DataAccessException;
Integer analyseCount(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO) throws DataAccessException;
List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO) throws DataAccessException;
List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO paramAcsRecordThreeSendQueryDTO) throws DataAccessException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\AcsElevatorRecordDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
Integer add(AcsElevatorRecordAddDTO paramAcsElevatorRecordAddDTO) throws DataAccessException;
int update(AcsOpenDoorRecordEditDTO paramAcsOpenDoorRecordEditDTO) throws DataAccessException;
CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO paramAcsOpenDoorRecordQueryDTO) throws DataAccessException;
AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String paramString) throws DataAccessException;
Integer analyseCount(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO) throws DataAccessException;
List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO) throws DataAccessException;
List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO paramAcsRecordThreeSendQueryDTO) throws DataAccessException;
}
@@ -1,9 +1,5 @@
package cn.cloudwalk.elevator.record.dao;
public interface AcsPersonInfoDao {}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\AcsPersonInfoDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
package cn.cloudwalk.elevator.record.dao;
public interface AcsPersonInfoDao {}
@@ -1,21 +1,17 @@
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 {
Integer add(AcsRecogRecordAddDTO paramAcsRecogRecordAddDTO) throws DataAccessException;
List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO paramAcsRecogRecordPageDTO) throws DataAccessException;
AcsRecogRecordResultDTO getByPersonId(String paramString) throws DataAccessException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\AcsRecogRecordDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
Integer add(AcsRecogRecordAddDTO paramAcsRecogRecordAddDTO) throws DataAccessException;
List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO paramAcsRecogRecordPageDTO) throws DataAccessException;
AcsRecogRecordResultDTO getByPersonId(String paramString) throws DataAccessException;
}
@@ -1,20 +1,16 @@
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 {
SendRecordTimeResultDTO getByType(Integer paramInteger) throws DataAccessException;
Integer add(SendRecordTimeAddDTO paramSendRecordTimeAddDTO) throws DataAccessException;
Integer update(SendRecordTimeEditDTO paramSendRecordTimeEditDTO) throws DataAccessException;
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\SendRecordTimeDao.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
SendRecordTimeResultDTO getByType(Integer paramInteger) throws DataAccessException;
Integer add(SendRecordTimeAddDTO paramSendRecordTimeAddDTO) throws DataAccessException;
Integer update(SendRecordTimeEditDTO paramSendRecordTimeEditDTO) throws DataAccessException;
}
@@ -1,41 +1,37 @@
/* */ package cn.cloudwalk.elevator.record.dto;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsElevatorAnalyseCycleBusinessResultDTO
/* */ {
/* */ private String businessId;
/* */ private Integer count;
/* */
/* */ public String getBusinessId() {
/* 16 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 20 */ this.businessId = businessId;
/* */ }
/* */
/* */ public Integer getCount() {
/* 24 */ return this.count;
/* */ }
/* */
/* */ public void setCount(Integer count) {
/* 28 */ this.count = count;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 33 */ return "AcsElevatorAnalyseCycleBusinessResultDTO{businessId='" + this.businessId + '\'' + ", count=" + this.count + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorAnalyseCycleBusinessResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '}';
}
}
@@ -1,54 +1,50 @@
/* */ 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() {
/* 26 */ return this.srcFloorList;
/* */ }
/* */
/* */ public void setSrcFloorList(List<String> srcFloorList) {
/* 30 */ this.srcFloorList = srcFloorList;
/* */ }
/* */
/* */ public List<String> getDestFloorList() {
/* 34 */ return this.destFloorList;
/* */ }
/* */
/* */ public void setDestFloorList(List<String> destFloorList) {
/* 38 */ this.destFloorList = destFloorList;
/* */ }
/* */
/* */ public List<String> getDispatchElevatorNoList() {
/* 42 */ return this.dispatchElevatorNoList;
/* */ }
/* */
/* */ public void setDispatchElevatorNoList(List<String> dispatchElevatorNoList) {
/* 46 */ this.dispatchElevatorNoList = dispatchElevatorNoList;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorPageRequestInfoResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,63 +1,59 @@
/* */ 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() {
/* 19 */ return this.startTime;
/* */ }
/* */
/* */ public void setStartTime(Long startTime) {
/* 23 */ this.startTime = startTime;
/* */ }
/* */
/* */ public Long getEndTime() {
/* 27 */ return this.endTime;
/* */ }
/* */
/* */ public void setEndTime(Long endTime) {
/* 31 */ this.endTime = endTime;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 35 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 39 */ this.businessId = businessId;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 43 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 47 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getSrcFloor() {
/* 51 */ return this.srcFloor;
/* */ }
/* */
/* */ public void setSrcFloor(String srcFloor) {
/* 55 */ this.srcFloor = srcFloor;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorQueryCountDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,367 +1,363 @@
/* */ 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() {
/* 150 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 154 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 158 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 162 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 166 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 170 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getDeviceName() {
/* 174 */ return this.deviceName;
/* */ }
/* */
/* */ public void setDeviceName(String deviceName) {
/* 178 */ this.deviceName = deviceName;
/* */ }
/* */
/* */ public String getDeviceTypeId() {
/* 182 */ return this.deviceTypeId;
/* */ }
/* */
/* */ public void setDeviceTypeId(String deviceTypeId) {
/* 186 */ this.deviceTypeId = deviceTypeId;
/* */ }
/* */
/* */ public String getDeviceTypeName() {
/* 190 */ return this.deviceTypeName;
/* */ }
/* */
/* */ public void setDeviceTypeName(String deviceTypeName) {
/* 194 */ this.deviceTypeName = deviceTypeName;
/* */ }
/* */
/* */ public String getDistrictId() {
/* 198 */ return this.districtId;
/* */ }
/* */
/* */ public void setDistrictId(String districtId) {
/* 202 */ this.districtId = districtId;
/* */ }
/* */
/* */ public String getAreaId() {
/* 206 */ return this.areaId;
/* */ }
/* */
/* */ public void setAreaId(String areaId) {
/* 210 */ this.areaId = areaId;
/* */ }
/* */
/* */ public String getOpenDoorType() {
/* 214 */ return this.openDoorType;
/* */ }
/* */
/* */ public void setOpenDoorType(String openDoorType) {
/* 218 */ this.openDoorType = openDoorType;
/* */ }
/* */
/* */ public String getOperateName() {
/* 222 */ return this.operateName;
/* */ }
/* */
/* */ public void setOperateName(String operateName) {
/* 226 */ this.operateName = operateName;
/* */ }
/* */
/* */ public String getFaceImagePath() {
/* 230 */ return this.faceImagePath;
/* */ }
/* */
/* */ public void setFaceImagePath(String faceImagePath) {
/* 234 */ this.faceImagePath = faceImagePath;
/* */ }
/* */
/* */ public String getPanoramaImagePath() {
/* 238 */ return this.panoramaImagePath;
/* */ }
/* */
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
/* 242 */ this.panoramaImagePath = panoramaImagePath;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 246 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 250 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getRecognitionNo() {
/* 254 */ return this.recognitionNo;
/* */ }
/* */
/* */ public void setRecognitionNo(String recognitionNo) {
/* 258 */ this.recognitionNo = recognitionNo;
/* */ }
/* */
/* */ public Long getRecognitionTime() {
/* 262 */ return this.recognitionTime;
/* */ }
/* */
/* */ public void setRecognitionTime(Long recognitionTime) {
/* 266 */ this.recognitionTime = recognitionTime;
/* */ }
/* */
/* */ public String getLogId() {
/* 270 */ return this.logId;
/* */ }
/* */
/* */ public void setLogId(String logId) {
/* 274 */ this.logId = logId;
/* */ }
/* */
/* */ public String getRecognitionFaceId() {
/* 278 */ return this.recognitionFaceId;
/* */ }
/* */
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
/* 282 */ this.recognitionFaceId = recognitionFaceId;
/* */ }
/* */
/* */ public String getSrcFloor() {
/* 286 */ return this.srcFloor;
/* */ }
/* */
/* */ public void setSrcFloor(String srcFloor) {
/* 290 */ this.srcFloor = srcFloor;
/* */ }
/* */
/* */ public String getDestFloor() {
/* 294 */ return this.destFloor;
/* */ }
/* */
/* */ public void setDestFloor(String destFloor) {
/* 298 */ this.destFloor = destFloor;
/* */ }
/* */
/* */ public String getDispatchElevatorNo() {
/* 302 */ return this.dispatchElevatorNo;
/* */ }
/* */
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
/* 306 */ this.dispatchElevatorNo = dispatchElevatorNo;
/* */ }
/* */
/* */ public Long getDispatchElevatorTime() {
/* 310 */ return this.dispatchElevatorTime;
/* */ }
/* */
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
/* 314 */ this.dispatchElevatorTime = dispatchElevatorTime;
/* */ }
/* */
/* */ public Integer getIsVisitor() {
/* 318 */ return this.isVisitor;
/* */ }
/* */
/* */ public void setIsVisitor(Integer isVisitor) {
/* 322 */ this.isVisitor = isVisitor;
/* */ }
/* */
/* */ public String getInterviewee() {
/* 326 */ return this.interviewee;
/* */ }
/* */
/* */ public void setInterviewee(String interviewee) {
/* 330 */ this.interviewee = interviewee;
/* */ }
/* */
/* */ public String getPersonCode() {
/* 334 */ return this.personCode;
/* */ }
/* */
/* */ public void setPersonCode(String personCode) {
/* 338 */ this.personCode = personCode;
/* */ }
/* */
/* */ public String getOrgId() {
/* 342 */ return this.orgId;
/* */ }
/* */
/* */ public void setOrgId(String orgId) {
/* 346 */ this.orgId = orgId;
/* */ }
/* */
/* */ public String getOrgName() {
/* 350 */ return this.orgName;
/* */ }
/* */
/* */ public void setOrgName(String orgName) {
/* 354 */ this.orgName = orgName;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 359 */ 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 + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordAddDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '}';
}
}
@@ -1,228 +1,224 @@
/* */ 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() {
/* 96 */ return this.isVisitor;
/* */ }
/* */
/* */ public void setIsVisitor(Integer isVisitor) {
/* 100 */ this.isVisitor = isVisitor;
/* */ }
/* */
/* */ public String getPersonCode() {
/* 104 */ return this.personCode;
/* */ }
/* */
/* */ public void setPersonCode(String personCode) {
/* 108 */ this.personCode = personCode;
/* */ }
/* */
/* */ public String getOrgId() {
/* 112 */ return this.orgId;
/* */ }
/* */
/* */ public void setOrgId(String orgId) {
/* 116 */ this.orgId = orgId;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 120 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 124 */ this.businessId = businessId;
/* */ }
/* */
/* */ public Long getStartTime() {
/* 128 */ return this.startTime;
/* */ }
/* */
/* */ public void setStartTime(Long startTime) {
/* 132 */ this.startTime = startTime;
/* */ }
/* */
/* */ public Long getEndTime() {
/* 136 */ return this.endTime;
/* */ }
/* */
/* */ public void setEndTime(Long endTime) {
/* 140 */ this.endTime = endTime;
/* */ }
/* */
/* */ public String getPersonName() {
/* 144 */ return this.personName;
/* */ }
/* */
/* */ public void setPersonName(String personName) {
/* 148 */ this.personName = personName;
/* */ }
/* */
/* */ public List<String> getDistrictIds() {
/* 152 */ return this.districtIds;
/* */ }
/* */
/* */ public void setDistrictIds(List<String> districtIds) {
/* 156 */ this.districtIds = districtIds;
/* */ }
/* */
/* */ public List<String> getDeviceIds() {
/* 160 */ return this.deviceIds;
/* */ }
/* */
/* */ public void setDeviceIds(List<String> deviceIds) {
/* 164 */ this.deviceIds = deviceIds;
/* */ }
/* */
/* */ public List<String> getAreaIds() {
/* 168 */ return this.areaIds;
/* */ }
/* */
/* */ public void setAreaIds(List<String> areaIds) {
/* 172 */ this.areaIds = areaIds;
/* */ }
/* */
/* */ public String getOpenDoorTypeCode() {
/* 176 */ return this.openDoorTypeCode;
/* */ }
/* */
/* */ public void setOpenDoorTypeCode(String openDoorTypeCode) {
/* 180 */ this.openDoorTypeCode = openDoorTypeCode;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 184 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 188 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getSrcFloor() {
/* 192 */ return this.srcFloor;
/* */ }
/* */
/* */ public void setSrcFloor(String srcFloor) {
/* 196 */ this.srcFloor = srcFloor;
/* */ }
/* */
/* */ public String getDestFloor() {
/* 200 */ return this.destFloor;
/* */ }
/* */
/* */ public void setDestFloor(String destFloor) {
/* 204 */ this.destFloor = destFloor;
/* */ }
/* */
/* */ public String getDispatchElevatorNo() {
/* 208 */ return this.dispatchElevatorNo;
/* */ }
/* */
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
/* 212 */ this.dispatchElevatorNo = dispatchElevatorNo;
/* */ }
/* */
/* */ public String getPersonId() {
/* 216 */ return this.personId;
/* */ }
/* */
/* */ public void setPersonId(String personId) {
/* 220 */ this.personId = personId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordDetailQueryDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,73 +1,69 @@
/* */ package cn.cloudwalk.elevator.record.dto;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsElevatorRecordExtraDTO
/* */ {
/* */ private String srcFloor;
/* */ private String destFloor;
/* */ private String dispatchElevatorNo;
/* */ private Long dispatchElevatorTime;
/* */
/* */ public String getSrcFloor() {
/* 32 */ return this.srcFloor;
/* */ }
/* */
/* */ public void setSrcFloor(String srcFloor) {
/* 36 */ this.srcFloor = srcFloor;
/* */ }
/* */
/* */ public String getDestFloor() {
/* 40 */ return this.destFloor;
/* */ }
/* */
/* */ public void setDestFloor(String destFloor) {
/* 44 */ this.destFloor = destFloor;
/* */ }
/* */
/* */ public String getDispatchElevatorNo() {
/* 48 */ return this.dispatchElevatorNo;
/* */ }
/* */
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
/* 52 */ this.dispatchElevatorNo = dispatchElevatorNo;
/* */ }
/* */
/* */ public Long getDispatchElevatorTime() {
/* 56 */ return this.dispatchElevatorTime;
/* */ }
/* */
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
/* 60 */ this.dispatchElevatorTime = dispatchElevatorTime;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 65 */ return "AcsElevatorRecordExtraDTO{srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordExtraDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '}';
}
}
@@ -1,368 +1,364 @@
/* */ 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() {
/* 151 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 155 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 159 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 163 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 167 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 171 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getDeviceName() {
/* 175 */ return this.deviceName;
/* */ }
/* */
/* */ public void setDeviceName(String deviceName) {
/* 179 */ this.deviceName = deviceName;
/* */ }
/* */
/* */ public String getDeviceTypeId() {
/* 183 */ return this.deviceTypeId;
/* */ }
/* */
/* */ public void setDeviceTypeId(String deviceTypeId) {
/* 187 */ this.deviceTypeId = deviceTypeId;
/* */ }
/* */
/* */ public String getDeviceTypeName() {
/* 191 */ return this.deviceTypeName;
/* */ }
/* */
/* */ public void setDeviceTypeName(String deviceTypeName) {
/* 195 */ this.deviceTypeName = deviceTypeName;
/* */ }
/* */
/* */ public String getDistrictId() {
/* 199 */ return this.districtId;
/* */ }
/* */
/* */ public void setDistrictId(String districtId) {
/* 203 */ this.districtId = districtId;
/* */ }
/* */
/* */ public String getAreaId() {
/* 207 */ return this.areaId;
/* */ }
/* */
/* */ public void setAreaId(String areaId) {
/* 211 */ this.areaId = areaId;
/* */ }
/* */
/* */ public String getOpenDoorType() {
/* 215 */ return this.openDoorType;
/* */ }
/* */
/* */ public void setOpenDoorType(String openDoorType) {
/* 219 */ this.openDoorType = openDoorType;
/* */ }
/* */
/* */ public String getOperateName() {
/* 223 */ return this.operateName;
/* */ }
/* */
/* */ public void setOperateName(String operateName) {
/* 227 */ this.operateName = operateName;
/* */ }
/* */
/* */ public String getFaceImagePath() {
/* 231 */ return this.faceImagePath;
/* */ }
/* */
/* */ public void setFaceImagePath(String faceImagePath) {
/* 235 */ this.faceImagePath = faceImagePath;
/* */ }
/* */
/* */ public String getPanoramaImagePath() {
/* 239 */ return this.panoramaImagePath;
/* */ }
/* */
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
/* 243 */ this.panoramaImagePath = panoramaImagePath;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 247 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 251 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getRecognitionNo() {
/* 255 */ return this.recognitionNo;
/* */ }
/* */
/* */ public void setRecognitionNo(String recognitionNo) {
/* 259 */ this.recognitionNo = recognitionNo;
/* */ }
/* */
/* */ public Long getRecognitionTime() {
/* 263 */ return this.recognitionTime;
/* */ }
/* */
/* */ public void setRecognitionTime(Long recognitionTime) {
/* 267 */ this.recognitionTime = recognitionTime;
/* */ }
/* */
/* */ public String getLogId() {
/* 271 */ return this.logId;
/* */ }
/* */
/* */ public void setLogId(String logId) {
/* 275 */ this.logId = logId;
/* */ }
/* */
/* */ public String getRecognitionFaceId() {
/* 279 */ return this.recognitionFaceId;
/* */ }
/* */
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
/* 283 */ this.recognitionFaceId = recognitionFaceId;
/* */ }
/* */
/* */ public String getSrcFloor() {
/* 287 */ return this.srcFloor;
/* */ }
/* */
/* */ public void setSrcFloor(String srcFloor) {
/* 291 */ this.srcFloor = srcFloor;
/* */ }
/* */
/* */ public String getDestFloor() {
/* 295 */ return this.destFloor;
/* */ }
/* */
/* */ public void setDestFloor(String destFloor) {
/* 299 */ this.destFloor = destFloor;
/* */ }
/* */
/* */ public String getDispatchElevatorNo() {
/* 303 */ return this.dispatchElevatorNo;
/* */ }
/* */
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
/* 307 */ this.dispatchElevatorNo = dispatchElevatorNo;
/* */ }
/* */
/* */ public Long getDispatchElevatorTime() {
/* 311 */ return this.dispatchElevatorTime;
/* */ }
/* */
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
/* 315 */ this.dispatchElevatorTime = dispatchElevatorTime;
/* */ }
/* */
/* */ public Integer getIsVisitor() {
/* 319 */ return this.isVisitor;
/* */ }
/* */
/* */ public void setIsVisitor(Integer isVisitor) {
/* 323 */ this.isVisitor = isVisitor;
/* */ }
/* */
/* */ public String getInterviewee() {
/* 327 */ return this.interviewee;
/* */ }
/* */
/* */ public void setInterviewee(String interviewee) {
/* 331 */ this.interviewee = interviewee;
/* */ }
/* */
/* */ public String getPersonCode() {
/* 335 */ return this.personCode;
/* */ }
/* */
/* */ public void setPersonCode(String personCode) {
/* 339 */ this.personCode = personCode;
/* */ }
/* */
/* */ public String getOrgId() {
/* 343 */ return this.orgId;
/* */ }
/* */
/* */ public void setOrgId(String orgId) {
/* 347 */ this.orgId = orgId;
/* */ }
/* */
/* */ public String getOrgName() {
/* 351 */ return this.orgName;
/* */ }
/* */
/* */ public void setOrgName(String orgName) {
/* 355 */ this.orgName = orgName;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 360 */ 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 + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordQueryResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '}';
}
}
@@ -1,212 +1,208 @@
/* */ 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() {
/* 91 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 95 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 99 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 103 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 107 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 111 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getOpenDoorType() {
/* 115 */ return this.openDoorType;
/* */ }
/* */
/* */ public void setOpenDoorType(String openDoorType) {
/* 119 */ this.openDoorType = openDoorType;
/* */ }
/* */
/* */ public String getOperateName() {
/* 123 */ return this.operateName;
/* */ }
/* */
/* */ public void setOperateName(String operateName) {
/* 127 */ this.operateName = operateName;
/* */ }
/* */
/* */ public String getFaceImagePath() {
/* 131 */ return this.faceImagePath;
/* */ }
/* */
/* */ public void setFaceImagePath(String faceImagePath) {
/* 135 */ this.faceImagePath = faceImagePath;
/* */ }
/* */
/* */ public String getPanoramaImagePath() {
/* 139 */ return this.panoramaImagePath;
/* */ }
/* */
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
/* 143 */ this.panoramaImagePath = panoramaImagePath;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 147 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 151 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getRecognitionNo() {
/* 155 */ return this.recognitionNo;
/* */ }
/* */
/* */ public void setRecognitionNo(String recognitionNo) {
/* 159 */ this.recognitionNo = recognitionNo;
/* */ }
/* */
/* */ public Long getRecognitionTime() {
/* 163 */ return this.recognitionTime;
/* */ }
/* */
/* */ public void setRecognitionTime(Long recognitionTime) {
/* 167 */ this.recognitionTime = recognitionTime;
/* */ }
/* */
/* */ public String getLogId() {
/* 171 */ return this.logId;
/* */ }
/* */
/* */ public void setLogId(String logId) {
/* 175 */ this.logId = logId;
/* */ }
/* */
/* */ public String getRecognitionFaceId() {
/* 179 */ return this.recognitionFaceId;
/* */ }
/* */
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
/* 183 */ this.recognitionFaceId = recognitionFaceId;
/* */ }
/* */
/* */ public Long getStartDay() {
/* 187 */ return this.startDay;
/* */ }
/* */
/* */ public void setStartDay(Long startDay) {
/* 191 */ this.startDay = startDay;
/* */ }
/* */
/* */ public Long getEndDay() {
/* 195 */ return this.endDay;
/* */ }
/* */
/* */ public void setEndDay(Long endDay) {
/* 199 */ this.endDay = endDay;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 204 */ 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 + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsOpenDoorRecordEditDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '}';
}
}
@@ -1,100 +1,96 @@
/* */ 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() {
/* 48 */ return this.id;
/* */ }
/* */
/* */ public void setId(String id) {
/* 52 */ this.id = id;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 56 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 60 */ this.businessId = businessId;
/* */ }
/* */
/* */ public Long getStartDay() {
/* 64 */ return this.startDay;
/* */ }
/* */
/* */ public void setStartDay(Long startDay) {
/* 68 */ this.startDay = startDay;
/* */ }
/* */
/* */ public Long getEndDay() {
/* 72 */ return this.endDay;
/* */ }
/* */
/* */ public void setEndDay(Long endDay) {
/* 76 */ this.endDay = endDay;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 80 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 84 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getLogId() {
/* 88 */ return this.logId;
/* */ }
/* */
/* */ public void setLogId(String logId) {
/* 92 */ this.logId = logId;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsOpenDoorRecordQueryDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,46 +1,42 @@
/* */ package cn.cloudwalk.elevator.record.dto;
/* */
/* */ import java.io.Serializable;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class AcsPersonInfoResultDTO
/* */ implements Serializable
/* */ {
/* */ private String id;
/* */ private String comparePicture;
/* */
/* */ public String getId() {
/* 26 */ return this.id;
/* */ }
/* */
/* */ public void setId(String id) {
/* 30 */ this.id = id;
/* */ }
/* */
/* */ public String getComparePicture() {
/* 34 */ return this.comparePicture;
/* */ }
/* */
/* */ public void setComparePicture(String comparePicture) {
/* 38 */ this.comparePicture = comparePicture;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsPersonInfoResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,463 +1,459 @@
/* */ 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() {
/* 182 */ return this.personId;
/* */ }
/* */
/* */ public void setPersonId(String personId) {
/* 186 */ this.personId = personId;
/* */ }
/* */
/* */ public String getPersonName() {
/* 190 */ return this.personName;
/* */ }
/* */
/* */ public void setPersonName(String personName) {
/* 194 */ this.personName = personName;
/* */ }
/* */
/* */ public String getBusinessId() {
/* 198 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 202 */ this.businessId = businessId;
/* */ }
/* */
/* */ public String getDeviceId() {
/* 206 */ return this.deviceId;
/* */ }
/* */
/* */ public void setDeviceId(String deviceId) {
/* 210 */ this.deviceId = deviceId;
/* */ }
/* */
/* */ public String getDeviceCode() {
/* 214 */ return this.deviceCode;
/* */ }
/* */
/* */ public void setDeviceCode(String deviceCode) {
/* 218 */ this.deviceCode = deviceCode;
/* */ }
/* */
/* */ public String getDeviceName() {
/* 222 */ return this.deviceName;
/* */ }
/* */
/* */ public void setDeviceName(String deviceName) {
/* 226 */ this.deviceName = deviceName;
/* */ }
/* */
/* */ public BigDecimal getThreshold() {
/* 230 */ return this.threshold;
/* */ }
/* */
/* */ public void setThreshold(BigDecimal threshold) {
/* 234 */ this.threshold = threshold;
/* */ }
/* */
/* */ public String getDistrictId() {
/* 238 */ return this.districtId;
/* */ }
/* */
/* */ public void setDistrictId(String districtId) {
/* 242 */ this.districtId = districtId;
/* */ }
/* */
/* */ public String getAreaId() {
/* 246 */ return this.areaId;
/* */ }
/* */
/* */ public void setAreaId(String areaId) {
/* 250 */ this.areaId = areaId;
/* */ }
/* */
/* */ public String getDeviceTypeId() {
/* 254 */ return this.deviceTypeId;
/* */ }
/* */
/* */ public void setDeviceTypeId(String deviceTypeId) {
/* 258 */ this.deviceTypeId = deviceTypeId;
/* */ }
/* */
/* */ public String getDeviceTypeName() {
/* 262 */ return this.deviceTypeName;
/* */ }
/* */
/* */ public void setDeviceTypeName(String deviceTypeName) {
/* 266 */ this.deviceTypeName = deviceTypeName;
/* */ }
/* */
/* */ public String getRegisterImagePath() {
/* 270 */ return this.registerImagePath;
/* */ }
/* */
/* */ public void setRegisterImagePath(String registerImagePath) {
/* 274 */ this.registerImagePath = registerImagePath;
/* */ }
/* */
/* */ public String getFaceImagePath() {
/* 278 */ return this.faceImagePath;
/* */ }
/* */
/* */ public void setFaceImagePath(String faceImagePath) {
/* 282 */ this.faceImagePath = faceImagePath;
/* */ }
/* */
/* */ public String getPanoramaImagePath() {
/* 286 */ return this.panoramaImagePath;
/* */ }
/* */
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
/* 290 */ this.panoramaImagePath = panoramaImagePath;
/* */ }
/* */
/* */ public BigDecimal getScore() {
/* 294 */ return this.score;
/* */ }
/* */
/* */ public void setScore(BigDecimal score) {
/* 298 */ this.score = score;
/* */ }
/* */
/* */ public Integer getRecognitionResult() {
/* 302 */ return this.recognitionResult;
/* */ }
/* */
/* */ public void setRecognitionResult(Integer recognitionResult) {
/* 306 */ this.recognitionResult = recognitionResult;
/* */ }
/* */
/* */ public Long getRecognitionTime() {
/* 310 */ return this.recognitionTime;
/* */ }
/* */
/* */ public void setRecognitionTime(Long recognitionTime) {
/* 314 */ this.recognitionTime = recognitionTime;
/* */ }
/* */
/* */ public String getGroupId() {
/* 318 */ return this.groupId;
/* */ }
/* */
/* */ public void setGroupId(String groupId) {
/* 322 */ this.groupId = groupId;
/* */ }
/* */
/* */ public String getFaceId() {
/* 326 */ return this.faceId;
/* */ }
/* */
/* */ public void setFaceId(String faceId) {
/* 330 */ this.faceId = faceId;
/* */ }
/* */
/* */ public BigDecimal getQualityScore() {
/* 334 */ return this.qualityScore;
/* */ }
/* */
/* */ public void setQualityScore(BigDecimal qualityScore) {
/* 338 */ this.qualityScore = qualityScore;
/* */ }
/* */
/* */ public String getLogId() {
/* 342 */ return this.logId;
/* */ }
/* */
/* */ public void setLogId(String logId) {
/* 346 */ this.logId = logId;
/* */ }
/* */
/* */ public BigDecimal getTempScore() {
/* 350 */ return this.tempScore;
/* */ }
/* */
/* */ public void setTempScore(BigDecimal tempScore) {
/* 354 */ this.tempScore = tempScore;
/* */ }
/* */
/* */ public BigDecimal getMaskScore() {
/* 358 */ return this.maskScore;
/* */ }
/* */
/* */ public void setMaskScore(BigDecimal maskScore) {
/* 362 */ this.maskScore = maskScore;
/* */ }
/* */
/* */ public BigDecimal getTempThreshold() {
/* 366 */ return this.tempThreshold;
/* */ }
/* */
/* */ public void setTempThreshold(BigDecimal tempThreshold) {
/* 370 */ this.tempThreshold = tempThreshold;
/* */ }
/* */
/* */ public String getCardType() {
/* 374 */ return this.cardType;
/* */ }
/* */
/* */ public void setCardType(String cardType) {
/* 378 */ this.cardType = cardType;
/* */ }
/* */
/* */ public Integer getSource() {
/* 382 */ return this.source;
/* */ }
/* */
/* */ public void setSource(Integer source) {
/* 386 */ this.source = source;
/* */ }
/* */
/* */ public String getTempImagePath() {
/* 390 */ return this.tempImagePath;
/* */ }
/* */
/* */ public void setTempImagePath(String tempImagePath) {
/* 394 */ this.tempImagePath = tempImagePath;
/* */ }
/* */
/* */ public String getRemark() {
/* 398 */ return this.remark;
/* */ }
/* */
/* */ public void setRemark(String remark) {
/* 402 */ this.remark = remark;
/* */ }
/* */
/* */ public String getSubDeviceId() {
/* 406 */ return this.subDeviceId;
/* */ }
/* */
/* */ public void setSubDeviceId(String subDeviceId) {
/* 410 */ this.subDeviceId = subDeviceId;
/* */ }
/* */
/* */ public String getSubDeviceCode() {
/* 414 */ return this.subDeviceCode;
/* */ }
/* */
/* */ public void setSubDeviceCode(String subDeviceCode) {
/* 418 */ this.subDeviceCode = subDeviceCode;
/* */ }
/* */
/* */ public String getSubDeviceName() {
/* 422 */ return this.subDeviceName;
/* */ }
/* */
/* */ public void setSubDeviceName(String subDeviceName) {
/* 426 */ this.subDeviceName = subDeviceName;
/* */ }
/* */
/* */ public String getSubDeviceTypeId() {
/* 430 */ return this.subDeviceTypeId;
/* */ }
/* */
/* */ public void setSubDeviceTypeId(String subDeviceTypeId) {
/* 434 */ this.subDeviceTypeId = subDeviceTypeId;
/* */ }
/* */
/* */ public String getSubDeviceTypeName() {
/* 438 */ return this.subDeviceTypeName;
/* */ }
/* */
/* */ public void setSubDeviceTypeName(String subDeviceTypeName) {
/* 442 */ this.subDeviceTypeName = subDeviceTypeName;
/* */ }
/* */
/* */ public String getPersonLabelIds() {
/* 446 */ return this.personLabelIds;
/* */ }
/* */
/* */ public void setPersonLabelIds(String personLabelIds) {
/* 450 */ this.personLabelIds = personLabelIds;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 455 */ 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 + '\'' + '}';
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecogRecordAddDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 + '\'' + '}';
}
}
@@ -1,75 +1,71 @@
/* */ 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;
/* */
/* 18 */ 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; }
/* */
/* */
/* */
/* */ public String getBusinessId() {
/* 23 */ return this.businessId;
/* */ }
/* */
/* */ public Long getStartTime() {
/* 27 */ return this.startTime;
/* */ }
/* */
/* */
/* */ public Long getEndTime() {
/* 32 */ return this.endTime;
/* */ }
/* */
/* */
/* */ public String getPersonName() {
/* 37 */ return this.personName;
/* */ }
/* */
/* */
/* */ public String getLogId() {
/* 42 */ return this.logId;
/* */ }
/* */
/* */
/* */ public List<String> getDistrictIds() {
/* 47 */ return this.districtIds;
/* */ }
/* */
/* */
/* */ public List<String> getAreaIds() {
/* 52 */ return this.areaIds;
/* */ }
/* */
/* */
/* */ public List<String> getDeviceIds() {
/* 57 */ return this.deviceIds;
/* */ }
/* */
/* */
/* */ public Integer getRecognitionResult() {
/* 62 */ return this.recognitionResult;
/* */ }
/* */
/* */
/* */ public Integer getCompareType() {
/* 67 */ return this.compareType;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecogRecordPageDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 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; }
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;
}
}
@@ -1,366 +1,362 @@
/* */ 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() {
/* 154 */ return this.openDoorId;
/* */ }
/* */
/* */ public void setOpenDoorId(String openDoorId) {
/* 158 */ this.openDoorId = openDoorId;
/* */ }
/* */
/* */ public String getPanoramaImageRecog() {
/* 162 */ return this.panoramaImageRecog;
/* */ }
/* */
/* */ public void setPanoramaImageRecog(String panoramaImageRecog) {
/* 166 */ this.panoramaImageRecog = panoramaImageRecog;
/* */ }
/* */
/* */ public String getPanoramaImageOpen() {
/* 170 */ return this.panoramaImageOpen;
/* */ }
/* */
/* */ public void setPanoramaImageOpen(String panoramaImageOpen) {
/* 174 */ this.panoramaImageOpen = panoramaImageOpen;
/* */ }
/* */
/* */ public String getFaceImage() {
/* 178 */ return this.faceImage;
/* */ }
/* */
/* */ public void setFaceImage(String faceImage) {
/* 182 */ this.faceImage = faceImage;
/* */ }
/* */
/* */ public String getRegisterImage() {
/* 186 */ return this.registerImage;
/* */ }
/* */
/* */ public void setRegisterImage(String registerImage) {
/* 190 */ this.registerImage = registerImage;
/* */ }
/* */
/* */ public String getPersonName() {
/* 194 */ return this.personName;
/* */ }
/* */
/* */ public void setPersonName(String personName) {
/* 198 */ this.personName = personName;
/* */ }
/* */
/* */ public long getRecognitionTime() {
/* 202 */ return this.recognitionTime;
/* */ }
/* */
/* */ public void setRecognitionTime(long recognitionTime) {
/* 206 */ this.recognitionTime = recognitionTime;
/* */ }
/* */
/* */ public String getDistrictId() {
/* 210 */ return this.districtId;
/* */ }
/* */
/* */ public void setDistrictId(String districtId) {
/* 214 */ this.districtId = districtId;
/* */ }
/* */
/* */ public String getAreaId() {
/* 218 */ return this.areaId;
/* */ }
/* */
/* */ public void setAreaId(String areaId) {
/* 222 */ this.areaId = areaId;
/* */ }
/* */
/* */ public String getDeviceTypeName() {
/* 226 */ return this.deviceTypeName;
/* */ }
/* */
/* */ public void setDeviceTypeName(String deviceTypeName) {
/* 230 */ this.deviceTypeName = deviceTypeName;
/* */ }
/* */
/* */ public String getDeviceName() {
/* 234 */ return this.deviceName;
/* */ }
/* */
/* */ public void setDeviceName(String deviceName) {
/* 238 */ this.deviceName = deviceName;
/* */ }
/* */
/* */ public String getOpenDoorType() {
/* 242 */ return this.openDoorType;
/* */ }
/* */
/* */ public void setOpenDoorType(String openDoorType) {
/* 246 */ this.openDoorType = openDoorType;
/* */ }
/* */
/* */ public String getOperateName() {
/* 250 */ return this.operateName;
/* */ }
/* */
/* */ public void setOperateName(String operateName) {
/* 254 */ this.operateName = operateName;
/* */ }
/* */
/* */ public BigDecimal getScore() {
/* 258 */ return this.score;
/* */ }
/* */
/* */ public void setScore(BigDecimal score) {
/* 262 */ this.score = score;
/* */ }
/* */
/* */ public Integer getRecordResult() {
/* 266 */ return this.recordResult;
/* */ }
/* */
/* */ public void setRecordResult(Integer recordResult) {
/* 270 */ this.recordResult = recordResult;
/* */ }
/* */
/* */ public String getRecognitionNo() {
/* 274 */ return this.recognitionNo;
/* */ }
/* */
/* */ public void setRecognitionNo(String recognitionNo) {
/* 278 */ this.recognitionNo = recognitionNo;
/* */ }
/* */
/* */ public String getRegRecordId() {
/* 282 */ return this.regRecordId;
/* */ }
/* */
/* */ public void setRegRecordId(String regRecordId) {
/* 286 */ this.regRecordId = regRecordId;
/* */ }
/* */
/* */ public BigDecimal getThreshold() {
/* 290 */ return this.threshold;
/* */ }
/* */
/* */ public void setThreshold(BigDecimal threshold) {
/* 294 */ this.threshold = threshold;
/* */ }
/* */
/* */ public Integer getRecognitionResult() {
/* 298 */ return this.recognitionResult;
/* */ }
/* */
/* */ public void setRecognitionResult(Integer recognitionResult) {
/* 302 */ this.recognitionResult = recognitionResult;
/* */ }
/* */
/* */ public String getGroupId() {
/* 306 */ return this.groupId;
/* */ }
/* */
/* */ public void setGroupId(String groupId) {
/* 310 */ this.groupId = groupId;
/* */ }
/* */
/* */ public String getFaceId() {
/* 314 */ return this.faceId;
/* */ }
/* */
/* */ public void setFaceId(String faceId) {
/* 318 */ this.faceId = faceId;
/* */ }
/* */
/* */ public BigDecimal getQualityScore() {
/* 322 */ return this.qualityScore;
/* */ }
/* */
/* */ public void setQualityScore(BigDecimal qualityScore) {
/* 326 */ this.qualityScore = qualityScore;
/* */ }
/* */
/* */ public String getLogId() {
/* 330 */ return this.logId;
/* */ }
/* */
/* */ public void setLogId(String logId) {
/* 334 */ this.logId = logId;
/* */ }
/* */
/* */ public BigDecimal getTempScore() {
/* 338 */ return this.tempScore;
/* */ }
/* */
/* */ public void setTempScore(BigDecimal tempScore) {
/* 342 */ this.tempScore = tempScore;
/* */ }
/* */
/* */ public BigDecimal getMaskScore() {
/* 346 */ return this.maskScore;
/* */ }
/* */
/* */ public void setMaskScore(BigDecimal maskScore) {
/* 350 */ this.maskScore = maskScore;
/* */ }
/* */
/* */ public BigDecimal getTempThreshold() {
/* 354 */ return this.tempThreshold;
/* */ }
/* */
/* */ public void setTempThreshold(BigDecimal tempThreshold) {
/* 358 */ this.tempThreshold = tempThreshold;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecordDetailQueryResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,60 +1,56 @@
/* */ 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() {
/* 32 */ return this.businessId;
/* */ }
/* */
/* */ public void setBusinessId(String businessId) {
/* 36 */ this.businessId = businessId;
/* */ }
/* */
/* */ public Long getStartTime() {
/* 40 */ return this.startTime;
/* */ }
/* */
/* */ public void setStartTime(Long startTime) {
/* 44 */ this.startTime = startTime;
/* */ }
/* */
/* */ public Long getEndTime() {
/* 48 */ return this.endTime;
/* */ }
/* */
/* */ public void setEndTime(Long endTime) {
/* 52 */ this.endTime = endTime;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecordThreeSendQueryDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,46 +1,42 @@
/* */ package cn.cloudwalk.elevator.record.dto;
/* */
/* */ import java.io.Serializable;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class SendRecordTimeAddDTO
/* */ implements Serializable
/* */ {
/* */ private Long time;
/* */ private Integer type;
/* */
/* */ public Long getTime() {
/* 26 */ return this.time;
/* */ }
/* */
/* */ public void setTime(Long time) {
/* 30 */ this.time = time;
/* */ }
/* */
/* */ public Integer getType() {
/* 34 */ return this.type;
/* */ }
/* */
/* */ public void setType(Integer type) {
/* 38 */ this.type = type;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\SendRecordTimeAddDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,46 +1,42 @@
/* */ package cn.cloudwalk.elevator.record.dto;
/* */
/* */ import java.io.Serializable;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class SendRecordTimeEditDTO
/* */ implements Serializable
/* */ {
/* */ private Long time;
/* */ private Integer type;
/* */
/* */ public Long getTime() {
/* 26 */ return this.time;
/* */ }
/* */
/* */ public void setTime(Long time) {
/* 30 */ this.time = time;
/* */ }
/* */
/* */ public Integer getType() {
/* 34 */ return this.type;
/* */ }
/* */
/* */ public void setType(Integer type) {
/* 38 */ this.type = type;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\SendRecordTimeEditDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,47 +1,43 @@
/* */ package cn.cloudwalk.elevator.record.dto;
/* */
/* */ import java.io.Serializable;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class SendRecordTimeResultDTO
/* */ implements Serializable
/* */ {
/* */ private Long time;
/* */ private Integer type;
/* */
/* */ public Long getTime() {
/* 27 */ return this.time;
/* */ }
/* */
/* */ public void setTime(Long time) {
/* 31 */ this.time = time;
/* */ }
/* */
/* */ public Integer getType() {
/* 35 */ return this.type;
/* */ }
/* */
/* */ public void setType(Integer type) {
/* 39 */ this.type = type;
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\SendRecordTimeResultDTO.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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;
}
}
@@ -1,136 +1,132 @@
/* */ 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.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;
/* 33 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
/* */
/* */
/* */
/* */ public CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
/* */ try {
/* 39 */ PageMethod.startPage(pageInfo.getCurrentPage(), pageInfo.getPageSize());
/* */
/* 41 */ Page<AcsElevatorRecordDetailQueryResultDTO> result = (Page<AcsElevatorRecordDetailQueryResultDTO>)this.acsElevatorRecordMapper.page(queryDTO);
/* 42 */ return new CloudwalkPageAble(result.getResult(), pageInfo, result.getTotal());
/* 43 */ } catch (Exception e) {
/* 44 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
/* 45 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public Integer add(AcsElevatorRecordAddDTO dto) throws DataAccessException {
/* */ try {
/* 52 */ return Integer.valueOf(this.acsElevatorRecordMapper.add(dto));
/* 53 */ } catch (Exception e) {
/* 54 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
/* 55 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public int update(AcsOpenDoorRecordEditDTO dto) throws DataAccessException {
/* */ try {
/* 62 */ return this.acsElevatorRecordMapper.update(dto);
/* 63 */ } catch (Exception e) {
/* 64 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
/* 65 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
/* */ try {
/* 72 */ return this.acsElevatorRecordMapper.query(dto);
/* 73 */ } catch (Exception e) {
/* 74 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
/* 75 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO queryDTO) throws DataAccessException {
/* */ try {
/* 90 */ return this.acsElevatorRecordMapper.listByRecognitionTime(queryDTO);
/* 91 */ } catch (Exception e) {
/* 92 */ this.logger.error("根据识别时间查询派梯记录失败,原因:", e);
/* 93 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String businessId) throws DataAccessException {
/* */ try {
/* 100 */ AcsElevatorPageRequestInfoResultDTO infoResultDTO = new AcsElevatorPageRequestInfoResultDTO();
/* 101 */ infoResultDTO.setSrcFloorList(this.acsElevatorRecordMapper.srcFloor(businessId));
/* 102 */ infoResultDTO.setDestFloorList(this.acsElevatorRecordMapper.destFloor(businessId));
/* 103 */ infoResultDTO.setDispatchElevatorNoList(this.acsElevatorRecordMapper.dispatchElevatorNo(businessId));
/* 104 */ return infoResultDTO;
/* 105 */ } catch (Exception e) {
/* 106 */ this.logger.error("开门记录分页请求数据查询失败,原因:", e);
/* 107 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public Integer analyseCount(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
/* */ try {
/* 114 */ return this.acsElevatorRecordMapper.analyseCount(acsElevatorQueryCountDTO);
/* 115 */ } catch (Exception e) {
/* 116 */ this.logger.error("开门记录统计分析查询失败,原因:", e);
/* 117 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
/* */ try {
/* 124 */ return this.acsElevatorRecordMapper.analyseGroup(acsElevatorQueryCountDTO);
/* 125 */ } catch (Exception e) {
/* 126 */ this.logger.error("开门记录统计分析分组查询失败,原因:", e);
/* 127 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\impl\AcsElevatorRecordDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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.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(getClass());
public CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
try {
PageMethod.startPage(pageInfo.getCurrentPage(), pageInfo.getPageSize());
Page<AcsElevatorRecordDetailQueryResultDTO> result = (Page<AcsElevatorRecordDetailQueryResultDTO>)this.acsElevatorRecordMapper.page(queryDTO);
return new CloudwalkPageAble(result.getResult(), pageInfo, result.getTotal());
} catch (Exception e) {
this.logger.error("保存刷脸派梯记录失败,原因:", e);
throw new DataAccessException(e);
}
}
public Integer add(AcsElevatorRecordAddDTO dto) throws DataAccessException {
try {
return Integer.valueOf(this.acsElevatorRecordMapper.add(dto));
} catch (Exception e) {
this.logger.error("保存刷脸派梯记录失败,原因:", e);
throw new DataAccessException(e);
}
}
public int update(AcsOpenDoorRecordEditDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.update(dto);
} catch (Exception e) {
this.logger.error("保存刷脸派梯记录失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.query(dto);
} catch (Exception e) {
this.logger.error("保存刷脸派梯记录失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO queryDTO) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.listByRecognitionTime(queryDTO);
} catch (Exception e) {
this.logger.error("根据识别时间查询派梯记录失败,原因:", e);
throw new DataAccessException(e);
}
}
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("开门记录分页请求数据查询失败,原因:", e);
throw new DataAccessException(e);
}
}
public Integer analyseCount(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.analyseCount(acsElevatorQueryCountDTO);
} catch (Exception e) {
this.logger.error("开门记录统计分析查询失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
try {
return this.acsElevatorRecordMapper.analyseGroup(acsElevatorQueryCountDTO);
} catch (Exception e) {
this.logger.error("开门记录统计分析分组查询失败,原因:", e);
throw new DataAccessException(e);
}
}
}
@@ -1,70 +1,66 @@
/* */ 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;
/* 33 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
/* */
/* */
/* */ public Integer add(AcsRecogRecordAddDTO dto) throws DataAccessException {
/* */ try {
/* 38 */ return Integer.valueOf(this.acsRecogRecordMapper.add(dto));
/* 39 */ } catch (Exception e) {
/* 40 */ this.logger.error("保存识别记录失败,原因:", e);
/* 41 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO dto) throws DataAccessException {
/* */ try {
/* 48 */ return this.acsRecogRecordMapper.page(dto);
/* 49 */ } catch (Exception e) {
/* 50 */ this.logger.error("分页查询识别记录失败,原因:", e);
/* 51 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */ public AcsRecogRecordResultDTO getByPersonId(String personId) throws DataAccessException {
/* */ try {
/* 58 */ return this.acsRecogRecordMapper.getByPersonId(personId);
/* 59 */ } catch (Exception e) {
/* 60 */ this.logger.error("根据人员id查询识别记录失败,原因:", e);
/* 61 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\impl\AcsRecogRecordDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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(getClass());
public Integer add(AcsRecogRecordAddDTO dto) throws DataAccessException {
try {
return Integer.valueOf(this.acsRecogRecordMapper.add(dto));
} catch (Exception e) {
this.logger.error("保存识别记录失败,原因:", e);
throw new DataAccessException(e);
}
}
public List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO dto) throws DataAccessException {
try {
return this.acsRecogRecordMapper.page(dto);
} catch (Exception e) {
this.logger.error("分页查询识别记录失败,原因:", e);
throw new DataAccessException(e);
}
}
public AcsRecogRecordResultDTO getByPersonId(String personId) throws DataAccessException {
try {
return this.acsRecogRecordMapper.getByPersonId(personId);
} catch (Exception e) {
this.logger.error("根据人员id查询识别记录失败,原因:", e);
throw new DataAccessException(e);
}
}
}
@@ -1,90 +1,86 @@
/* */ 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;
/* 32 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public SendRecordTimeResultDTO getByType(Integer type) throws DataAccessException {
/* */ try {
/* 44 */ return this.sendRecordTimeMapper.getByType(type);
/* 45 */ } catch (Exception e) {
/* 46 */ this.logger.error("根据类型获取时间戳失败,原因:", e);
/* 47 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Integer add(SendRecordTimeAddDTO timeAddDTO) throws DataAccessException {
/* */ try {
/* 61 */ return this.sendRecordTimeMapper.add(timeAddDTO);
/* 62 */ } catch (Exception e) {
/* 63 */ this.logger.error("新增时间戳失败,原因:", e);
/* 64 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Integer update(SendRecordTimeEditDTO editDTO) throws DataAccessException {
/* */ try {
/* 78 */ return this.sendRecordTimeMapper.update(editDTO);
/* 79 */ } catch (Exception e) {
/* 80 */ this.logger.error("根据类型修改时间戳失败,原因:", e);
/* 81 */ throw new DataAccessException(e);
/* */ }
/* */ }
/* */ }
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\impl\SendRecordTimeDaoImpl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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(getClass());
public SendRecordTimeResultDTO getByType(Integer type) throws DataAccessException {
try {
return this.sendRecordTimeMapper.getByType(type);
} catch (Exception e) {
this.logger.error("根据类型获取时间戳失败,原因:", e);
throw new DataAccessException(e);
}
}
public Integer add(SendRecordTimeAddDTO timeAddDTO) throws DataAccessException {
try {
return this.sendRecordTimeMapper.add(timeAddDTO);
} catch (Exception e) {
this.logger.error("新增时间戳失败,原因:", e);
throw new DataAccessException(e);
}
}
public Integer update(SendRecordTimeEditDTO editDTO) throws DataAccessException {
try {
return this.sendRecordTimeMapper.update(editDTO);
} catch (Exception e) {
this.logger.error("根据类型修改时间戳失败,原因:", e);
throw new DataAccessException(e);
}
}
}
@@ -1,43 +1,39 @@
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 {
List<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO);
List<AcsElevatorRecordDetailQueryResultDTO> page(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO);
int add(AcsElevatorRecordAddDTO paramAcsElevatorRecordAddDTO);
int update(AcsOpenDoorRecordEditDTO paramAcsOpenDoorRecordEditDTO);
List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO paramAcsOpenDoorRecordQueryDTO);
List<String> srcFloor(@Param("businessId") String paramString);
List<String> destFloor(@Param("businessId") String paramString);
List<String> dispatchElevatorNo(@Param("businessId") String paramString);
Integer analyseCount(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO);
List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO);
List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO paramAcsRecordThreeSendQueryDTO);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\mapper\AcsElevatorRecordMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
List<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO);
List<AcsElevatorRecordDetailQueryResultDTO> page(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO);
int add(AcsElevatorRecordAddDTO paramAcsElevatorRecordAddDTO);
int update(AcsOpenDoorRecordEditDTO paramAcsOpenDoorRecordEditDTO);
List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO paramAcsOpenDoorRecordQueryDTO);
List<String> srcFloor(@Param("businessId") String paramString);
List<String> destFloor(@Param("businessId") String paramString);
List<String> dispatchElevatorNo(@Param("businessId") String paramString);
Integer analyseCount(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO);
List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO);
List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO paramAcsRecordThreeSendQueryDTO);
}
@@ -1,20 +1,16 @@
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 {
int add(AcsRecogRecordAddDTO paramAcsRecogRecordAddDTO);
List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO paramAcsRecogRecordPageDTO);
AcsRecogRecordResultDTO getByPersonId(String paramString);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\mapper\AcsRecogRecordMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
int add(AcsRecogRecordAddDTO paramAcsRecogRecordAddDTO);
List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO paramAcsRecogRecordPageDTO);
AcsRecogRecordResultDTO getByPersonId(String paramString);
}
@@ -1,20 +1,16 @@
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 {
SendRecordTimeResultDTO getByType(@Param("type") Integer paramInteger);
Integer add(SendRecordTimeAddDTO paramSendRecordTimeAddDTO);
Integer update(SendRecordTimeEditDTO paramSendRecordTimeEditDTO);
}
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\mapper\SendRecordTimeMapper.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/
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 {
SendRecordTimeResultDTO getByType(@Param("type") Integer paramInteger);
Integer add(SendRecordTimeAddDTO paramSendRecordTimeAddDTO);
Integer update(SendRecordTimeEditDTO paramSendRecordTimeEditDTO);
}