feat: add service config templates and extraction script

Former-commit-id: 1de24b7eb79676d1aba9d799a58c5a753290cf52
This commit is contained in:
反编译工作区
2026-05-01 19:38:01 +08:00
parent 3175b7074b
commit 8b15445328
2433 changed files with 8322164 additions and 1604 deletions
+96
View File
@@ -0,0 +1,96 @@
# maven-ninca-crk-from-lib/ — lib 反编译对照工程
## OVERVIEW
由交付 fat jar `ninca-crk-std-backend-V2.9.2_20210730.jar`**`lib/`** 目录中 **28**`ninca-crk-*-2.9.1_210630-SNAPSHOT.jar`(四条业务线 × 七层)经 **CFR** 反编译得到的 **Maven 聚合工程**,仅用于走查与和现网构件对照,**不替代**官方多模块源码树。
## 生成方式
```bash
# 需 /tmp/cfr-0.152.jar;缺则先下载 CFR 0.152
python3 scripts/decompile_ninca_crk_lib_modules.py \
"/path/to/ninca-crk-std-backend-V2.9.2_20210730.jar"
```
## STRUCTURE
- 父工程:`pom.xml``ninca-crk-from-lib-reactor`
- 子模块:`*-interface``*-common``*-data``*-facade``*-biz``*-service``*-web`access-control / conference-attendance / smart-attendance / visitor-management 各一套)
## 说明
- 子模块 `pom.xml` 尽量保留 jar 内 `META-INF/maven/**/pom.xml`,并改挂本仓库父 POM。
- **四条 `*-common`**:父工程已声明 **`dependencyManagement`**,并为各 common 补上与本仓库 **`maven-cloudwalk-legacy-public/cloudwalk-common-result`**`3.7.2-Brussels-SRX`)、**POI 3.15**(与电梯工程一致)、Fastjson / Zip4j / ZXing / Servlet API 等坐标;访客 common 另含 **spring-web**、**javax.annotation-api**。
- **`cn.cloudwalk.cloud.*`**(如 `CloudwalkBaseTimes``ServiceException``CloudwalkCallContext`)来自 **`cloudwalk-common-result`**。编译前请先装入本地仓库,任选其一:
- **源码安装**`cd maven-cloudwalk-legacy-public && mvn install -pl cloudwalk-common-result -am -DskipTests`
- **交付包 `lib/`**:对同名 `cloudwalk-common-result-*.jar` 执行 `mvn install:install-file`(版本号需与 `${cloudwalk.common.result.version}` 一致)。
- **更高层模块**`*-data`/`*-service`/`*-web`)仍未逐项对齐依赖,整仓 **`mvn compile`** 可能继续报错属预期。
## ENTRY POINTS
- **无 `@SpringBootApplication` 主类**(本工程为库集合,非独立应用)
- Controllers: **44** 个(`@RestController`),分布于四条业务线的 `*-web` 模块
- Service Implementations: **94** 个(`*ServiceImpl`
- Feign 客户端: **1** 个(`SmsFeign.java`visitor-management-interface
- 走查入口:`ninca-crk-*-web/src/main/java/…/controller/` → 对应 `*-service` 实现
## MODULE COMPLEXITY
| 模块 | Java 文件 | 备注 |
|------|-----------|------|
| smart-attendance-common | 207 | **最复杂**44 个 `bean/rule` DTO,见 [AGENTS.md](ninca-crk-smart-attendance-common/AGENTS.md) |
| access-control-interface | 139 | Feign 接口 + 参数/结果 DTO |
| access-control-common | 126 | QrcodeUtils + 共享工具 |
| 其余 26 模块 | <110 | 同构七层模式,根文档覆盖 |
## BUILD PATTERNS
- **quartz**:仅 `portal-resource-stubs``conference-attendance-facade` 引用
- **Spring Boot 2.1.x**:仅 `conference-attendance-facade`,其他模块均用 Spring 4.3.x
- `formatter-maven-plugin`:版本由父 `maven-cloudwalk-cloud/pom.xml` 属性控制(2.24.1),引用 `docs/style/alibaba-eclipse-codestyle.xml`
- `javax.servlet-api`:部分模块用 `provided` scope(如 `conference-attendance-web`
## 关联
- 可维护源码入口仍见 `maven-ninca-crk/ninca-crk-gpu-std/`
## 源码正确性走查(CFR2026-04-30
### 规模与用途
-**1542**`.java`,**28** 子模块(四条业务线 × 七层:`interface` / `common` / `data` / `facade` / `biz` / `service` / `web`)。
- 定位:**对照走查与检索**,不以「可直接 `mvn compile` 的工程」为前提。
### Maven 与编译
- **JDK**:父 POM 固定 **`java.version` = `1.8`**,并通过继承的 **`maven-compiler-plugin`** 统一 **`source` / `target`**;子模块不再重复声明编译器属性。**`maven-enforcer-plugin`** 在 **`validate`** 阶段执行 **`requireJavaVersion`****`[1.8,1.9)`**),须用 **JDK 8** 启动 Maven,否则会失败。
- **源码侧**access-control-common 等处已用 **`java.util.Base64`** 等替代 JDK 内部 API,避免字节码/源码在其他 JDK 上偶然编译时出现符号缺失(与本 reactor **强制 JDK 8 跑 Maven** 互为补充)。
- 父 POM 已集中管理 **`cloudwalk-common-result`**、Apache POI、Fastjson、Zip4j、ZXing、Guava、Ant、`thumbnailator``commons-io``spring-web``javax.servlet-api``javax.annotation-api` 等版本;**须先安装 `cloudwalk-common-result`**(见上文「说明」)。
- 验证单个 common`cd maven-ninca-crk-from-lib/ninca-crk-access-control-common && mvn -q compiler:compile -DskipTests`
- **`*-interface` 及以上**仍缺依赖时需按编译报错逐项补充或使用交付 **`…/ninca-crk-std-backend-V2.9.2_20210730/lib`** 中对应 JAR `install-file`
### CFR 头注释:`Could not load the following classes`
- **绝大部分** `.java` 在文件头带有 CFR 列举的「未能加载的类型」,紧接着仍有正常的 `import`。这是 **反编译时 classpath 不完整** 的提示,**不等于**该类在源码树中缺失或方法体必然错误。
- 走查样例:`AcsDeviceController``VisitorController` 等在注释中列出的类型,下文 `import` 与调用仍完整可读。
### 已核实的共性风险(非「猜」)
1. **`CollectionUtils.split` 泛型**(四套 `*-common`):已从 CFR 误生成的 `ArrayList<List<ArrayList<E>>>` **修正为** `ArrayList<List<E>>`(含 `split(List, int...)` 内同名局部变量)。
2. **`QrcodeUtils` / `ExcelUtil` / `CollectionUtils`**access-control-common,并已同步三套 `*-common`):去掉 JDK 内部 Base64、`field.getType()` 误写 `Class<Comparable<Date>>`,以及 CFR 带来的若干泛型不匹配,便于在 **JDK 8、`-source/-target 1.8`** 下通过编译。
3. **`BusinessIdShardingAlgorithm`**`catch (UnsupportedEncodingException)``throw new UnsupportedOperationException()` 无Cause、无信息——可能为字节码等价实现,也可能是反编译简化;若需与现网严格一致应以 class 对照或原始源码为准。
4. **未发现** 全树规模上的 `/* synthetic */` 标记;`UnsupportedOperationException` 除上述分表算法与各校 `CollectionUtils` 拷贝外未见异常模式。
### 按业务线小结(逐「子模块集合」)
| 业务线 | 模块前缀 | 走查要点 |
|--------|----------|----------|
| 门禁 / 访客相关 API | `ninca-crk-access-control-*` | `open` 电梯/记录、`device`/`record`/`person` 与现网电梯应用 Feign 命名可交叉对照;web 层 Spring 注解与表单类完整 |
| 会议考勤 | `ninca-crk-conference-attendance-*` | 与 access-control 同构七层;common 工具/DTO 与 access-control 风格一致 |
| 智能考勤 | `ninca-crk-smart-attendance-*` | 含 ShardingSphere 分表算法等 data 层;依赖外部坐标在 POM 中未体现 |
| 访客管理 | `ninca-crk-visitor-management-*` | 与电梯侧访客/Feign 对照价值最高;`*-interface`/`*-service`/`*-web` CFR 头注释密集,语义仍以正文为准 |
### 结论
- **逻辑与接口层面的走查**:可作为阅读现网构件行为的参考,尤其 interface + controller + service impl 链路。
- **「源码正确性 = 可编译且与 jar 字节码等价」**:当前树 **仍不满足**Maven 依赖未补齐);**`CollectionUtils.split` 泛型** 已在四份 common 中修正,可编译性少一类硬性类型错误。
+5
View File
@@ -0,0 +1,5 @@
Generated by scripts/decompile_ninca_crk_lib_modules.py
Source fat jar: /media/zebra/9e8fa357-7db6-4d70-88ed-d5de5a059a663/星河湾星中星/星中心/ninca_crk_std_01-ninca_crk_std_backend/ninca-crk-std-backend-V2.9.2_20210730.jar
CFR: /tmp/cfr-0.152.jar
反编译产物仅供走查;首次编译需在私服可用的环境下补齐依赖。
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.cloudwalk.ninca</groupId>
<artifactId>ninca-crk-from-lib-reactor</artifactId>
<version>2.9.1_210630-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>ninca-crk-access-control-biz</artifactId>
<name>ninca-crk-access-control-biz</name>
<description>CFR from ninca-crk-access-control-biz-2.9.1_210630-SNAPSHOT.jar (embedded pom: none)</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>cn.cloudwalk.ninca</groupId>
<artifactId>ninca-crk-access-control-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>cn.cloudwalk.ninca</groupId>
<artifactId>ninca-crk-access-control-data</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>cn.cloudwalk.cloud</groupId>
<artifactId>cloudwalk-common-result</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<dependency>
<groupId>cn.cloudwalk.intelligent</groupId>
<artifactId>davinci-manager-storage</artifactId>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,67 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility
* com.fasterxml.jackson.annotation.PropertyAccessor
* com.fasterxml.jackson.databind.ObjectMapper
* com.fasterxml.jackson.databind.ObjectMapper$DefaultTyping
* org.springframework.context.annotation.Bean
* org.springframework.context.annotation.Configuration
* org.springframework.context.annotation.Primary
* org.springframework.data.redis.connection.RedisConnectionFactory
* org.springframework.data.redis.core.RedisTemplate
* org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer
* org.springframework.data.redis.serializer.RedisSerializer
* org.springframework.data.redis.serializer.StringRedisSerializer
*/
package cn.cloudwalk.biz.ninca.accesscontrol.cache;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
public class CacheOverrideConfig {
public static final String CACHE_NAME_APPLICATIONIDS = "ACS_Applicationids";
public static final String CACHE_NAME_ACS_DEVICE_TYPES = "ACS_DeviceTypesCache";
public static final String CACHE_NAME_ACS_DEVICE_TYPE_FEATURES = "ACS_DeviceTypeFeaturesCache";
public static final String CACHE_NAME_ACS_DEVICE_ATTRS = "ACS_DeviceAttrsCache";
public static final String CACHE_NAME_ACS_RECORD_STATISTICS = "ACS_RecordStatisticsCache";
public static final String CACHE_NAME_ACS_DEVICE_TREE = "ACS_DeviceTreeCache";
public static final String CACHE_NAME_ACS_AREA_TREE = "ACS_AreaTreeCache";
public static final String CACHE_KEY_APPLICATION_IDS_PREFIX = "acs_applicationIds:";
public static final String CACHE_KEY_ACS_DEVICE_TYPES_PREFIX = "acs_deviceTypes:";
public static final String CACHE_KEY_ACS_DEVICE_TYPE_FEATURES_PREFIX = "acs_deviceTypeFeatures:";
public static final String CACHE_KEY_ACS_EXPORT_PREFIX = "acs_export_prefix:";
public static final String CACHE_KEY_ACS_DEVICE_ATTRS_PREFIX = "acs_deviceAttrs:";
public static final String CACHE_KEY_ACS_RECORD_STATISTICS_PREFIX = "acs_recordStatistics:";
public static final String CACHE_KEY_ACS_DEVICE_TREE_PREFIX = "acs_deviceTreeCache";
public static final String CACHE_KEY_ACS_AREA_TREE_PREFIX = "acs_areaTreeCache:";
@Primary
@Bean(value={"redisTemplate"})
public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
RedisTemplate redisTemplate = new RedisTemplate();
redisTemplate.setConnectionFactory(redisConnectionFactory);
StringRedisSerializer stringRedisSerializer = new StringRedisSerializer();
Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
jackson2JsonRedisSerializer.setObjectMapper(objectMapper);
redisTemplate.setValueSerializer((RedisSerializer)jackson2JsonRedisSerializer);
redisTemplate.setKeySerializer((RedisSerializer)stringRedisSerializer);
redisTemplate.afterPropertiesSet();
return redisTemplate;
}
}
@@ -0,0 +1,31 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.serial.UUIDSerial
* cn.cloudwalk.cloud.utils.CloudwalkDateUtils
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.beans.factory.annotation.Autowired
*/
package cn.cloudwalk.biz.ninca.accesscontrol.common;
import cn.cloudwalk.cloud.serial.UUIDSerial;
import cn.cloudwalk.cloud.utils.CloudwalkDateUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
public abstract class AbstractCloudwalkManager {
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
@Autowired(required=false)
private UUIDSerial uuidSerial;
public String genUUID() {
if (null != this.uuidSerial) {
return this.uuidSerial.uuid();
}
return CloudwalkDateUtils.getUUID();
}
}
@@ -0,0 +1,61 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsCheckDeviceAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsCheckDeviceQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsCheckDeviceResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsCheckDeviceDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsCheckDeviceAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsCheckDeviceQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsCheckDeviceResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsCheckDeviceDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsCheckDeviceManager
extends AbstractCloudwalkManager {
@Autowired
private AcsCheckDeviceDao acsCheckDeviceDao;
public List<AcsCheckDeviceResultDTO> listDevices(AcsCheckDeviceQueryDTO dto) throws DataAccessException {
try {
return this.acsCheckDeviceDao.listDevices(dto);
}
catch (Exception e) {
this.logger.error("\u83b7\u53d6\u8003\u52e4\u8bbe\u5907\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer addCheckDevices(List<AcsCheckDeviceAddDTO> addDTOS) throws DataAccessException {
try {
return this.acsCheckDeviceDao.addCheckDevices(addDTOS);
}
catch (Exception e) {
this.logger.error("\u6279\u91cf\u65b0\u589e\u8003\u52e4\u8bbe\u5907\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer deleteByDeviceIds(List<String> deviceIds) throws DataAccessException {
try {
return this.acsCheckDeviceDao.deleteByDeviceIds(deviceIds);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u8bbe\u5907ids\u5220\u9664\u8003\u52e4\u8bbe\u5907\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,63 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrAddDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrEditDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrQueryDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrResultDto
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceAttrDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrAddDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrEditDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrQueryDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAttrResultDto;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceAttrDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsDeviceAttrManager
extends AbstractCloudwalkManager {
@Autowired
private AcsDeviceAttrDao acsDeviceAttrDao;
public Integer insert(AcsDeviceAttrAddDto dto) throws DataAccessException {
try {
return this.acsDeviceAttrDao.insert(dto);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u95e8\u7981\u8bbe\u5907\u5c5e\u6027\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer update(AcsDeviceAttrEditDto dto) throws DataAccessException {
try {
return this.acsDeviceAttrDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u95e8\u7981\u8bbe\u5907\u5c5e\u6027\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsDeviceAttrResultDto> query(AcsDeviceAttrQueryDto dto) throws DataAccessException {
try {
return this.acsDeviceAttrDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u95e8\u7981\u8bbe\u5907\u5c5e\u6027\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,99 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceDeleteDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceUpdateStatusDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceDeleteDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceUpdateStatusDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsDeviceManager
extends AbstractCloudwalkManager {
@Autowired
private AcsDeviceDao acsDeviceDao;
public Integer insert(AcsDeviceAddDTO dto) throws DataAccessException {
try {
return this.acsDeviceDao.insert(dto);
}
catch (Exception e) {
this.logger.error("\u65b0\u589e\u95e8\u7981\u8bbe\u5907\u6570\u636e\u5e93\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer batchInsert(List<AcsDeviceAddDTO> list) throws DataAccessException {
try {
return this.acsDeviceDao.batchInsert(list);
}
catch (Exception e) {
this.logger.error("\u6279\u91cf\u6dfb\u52a0\u95e8\u7981\u8bbe\u5907\u6570\u636e\u5e93\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsDeviceDeleteDTO dto) throws DataAccessException {
try {
return this.acsDeviceDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u95e8\u7981\u8bbe\u5907\u6570\u636e\u5e93\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsDeviceResultDTO> page(AcsDeviceQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsDeviceDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u5206\u9875\u67e5\u8be2\u95e8\u7981\u8bbe\u5907\u6570\u636e\u5e93\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsDeviceResultDTO> list(AcsDeviceQueryDTO dto) throws DataAccessException {
try {
return this.acsDeviceDao.list(dto);
}
catch (Exception e) {
this.logger.error("\u5217\u8868\u67e5\u8be2\u95e8\u7981\u8bbe\u5907\u6570\u636e\u5e93\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer updateOpenStatus(AcsDeviceUpdateStatusDTO dto) throws DataAccessException {
try {
return this.acsDeviceDao.updateOpenStatus(dto);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u95e8\u7981\u8bbe\u5907\u5f00\u95ed\u72b6\u6001\u6570\u636e\u5e93\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,68 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTaskAddDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTaskDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceTaskDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTaskAddDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTaskDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceTaskDao;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsDeviceTaskManager
extends AbstractCloudwalkManager {
@Resource
private AcsDeviceTaskDao acsDeviceTaskDao;
public Integer add(AcsDeviceTaskAddDto dto) throws DataAccessException {
try {
return this.acsDeviceTaskDao.insert(dto);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u95e8\u7981\u8bbe\u5907\u7ed1\u5b9a\u4efb\u52a1\u8fdb\u5ea6\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer updateBingDevices(AcsDeviceTaskAddDto dto) throws DataAccessException {
try {
return this.acsDeviceTaskDao.updateBingDevices(dto);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u4efb\u52a1\u5df2\u7ed1\u5b9a\u6570\u91cf\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer updateIsStop(AcsDeviceTaskAddDto dto) throws DataAccessException {
try {
return this.acsDeviceTaskDao.updateIsStop(dto);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u4efb\u52a1\u72b6\u6001\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public AcsDeviceTaskDTO getById(String taskId) throws DataAccessException {
try {
return this.acsDeviceTaskDao.getById(taskId);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u4efb\u52a1id\u83b7\u53d6\u95e8\u7981\u8bbe\u5907\u7ed1\u5b9a\u4efb\u52a1\u8fdb\u5ea6\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTypeDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTypeFeaturesDto
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceTypeDao
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceTypeFeaturesDao
* javax.annotation.Resource
* org.springframework.cache.annotation.Cacheable
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTypeDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsDeviceTypeFeaturesDto;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceTypeDao;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsDeviceTypeFeaturesDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Component;
@Component
public class AcsDeviceTypeManager
extends AbstractCloudwalkManager {
@Resource
private AcsDeviceTypeDao acsDeviceTypeDao;
@Resource
private AcsDeviceTypeFeaturesDao acsDeviceTypeFeaturesDao;
@Cacheable(cacheNames={"ACS_DeviceTypesCache"}, key="T(cn.cloudwalk.biz.ninca.accesscontrol.cache.CacheOverrideConfig).CACHE_KEY_ACS_DEVICE_TYPES_PREFIX")
public List<AcsDeviceTypeDTO> typeListAll() throws DataAccessException {
try {
return this.acsDeviceTypeDao.list(null);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u8bbe\u5907\u7c7b\u578b\u5217\u8868\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
@Cacheable(cacheNames={"ACS_DeviceTypeFeaturesCache"}, key="T(cn.cloudwalk.biz.ninca.accesscontrol.cache.CacheOverrideConfig).CACHE_KEY_ACS_DEVICE_TYPE_FEATURES_PREFIX + #dto.deviceTypeCode")
public List<AcsDeviceTypeFeaturesDto> query(AcsDeviceTypeFeaturesDto dto) throws DataAccessException {
try {
return this.acsDeviceTypeFeaturesDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u83b7\u53d6\u8bbe\u5907\u7c7b\u578b\u7684\u529f\u80fd\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,89 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupDelDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupEditDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsUrgentDeviceGroupDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupDelDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupEditDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceGroupResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsUrgentDeviceGroupDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsUrgentDeviceGroupManager
extends AbstractCloudwalkManager {
@Autowired
private AcsUrgentDeviceGroupDao acsUrgentDeviceGroupDao;
public Integer add(AcsUrgentDeviceGroupAddDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceGroupDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u7d27\u6025\u758f\u6563\u5206\u7ec4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer edit(AcsUrgentDeviceGroupEditDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceGroupDao.edit(dto);
}
catch (Exception e) {
this.logger.error("\u7f16\u8f91\u7d27\u6025\u758f\u6563\u5206\u7ec4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsUrgentDeviceGroupDelDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceGroupDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u7d27\u6025\u758f\u6563\u5206\u7ec4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsUrgentDeviceGroupResultDTO> page(AcsUrgentDeviceGroupQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsUrgentDeviceGroupDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u7d27\u6025\u758f\u6563\u5206\u7ec4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsUrgentDeviceGroupResultDTO> query(AcsUrgentDeviceGroupQueryDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceGroupDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u7d27\u6025\u758f\u6563\u5206\u7ec4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,87 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceDeleteDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceNewDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsUrgentDeviceDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceDeleteDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceNewDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentDeviceResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsUrgentDeviceDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsUrgentDeviceManager
extends AbstractCloudwalkManager {
@Autowired
private AcsUrgentDeviceDao acsUrgentDeviceDao;
public List<AcsUrgentDeviceResultDTO> gets(AcsUrgentDeviceQueryDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceDao.gets(dto);
}
catch (Exception e) {
this.logger.error("\u83b7\u53d6\u7d27\u6025\u76f8\u5173\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsUrgentDeviceResultDTO> page(AcsUrgentDeviceQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsUrgentDeviceDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u83b7\u53d6\u7d27\u6025\u76f8\u5173\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer add(AcsUrgentDeviceNewDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u65b0\u589e\u7d27\u6025\u76f8\u5173\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsUrgentDeviceDeleteDTO dto) throws DataAccessException {
try {
return this.acsUrgentDeviceDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u7d27\u6025\u76f8\u5173\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer batchInsert(List<AcsUrgentDeviceNewDTO> dto) throws DataAccessException {
try {
return this.acsUrgentDeviceDao.batchInsert(dto);
}
catch (Exception e) {
this.logger.error("\u6279\u91cf\u6dfb\u52a0\u7d27\u6025\u76f8\u5173\u4fe1\u606f\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,63 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceDelDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsUrgentGroupDeviceDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceDelDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.AcsUrgentGroupDeviceResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.AcsUrgentGroupDeviceDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsUrgentGroupDeviceManager
extends AbstractCloudwalkManager {
@Autowired
private AcsUrgentGroupDeviceDao acsUrgentGroupDeviceDao;
public Integer batchAdd(List<AcsUrgentGroupDeviceAddDTO> list) throws DataAccessException {
try {
return this.acsUrgentGroupDeviceDao.batchAdd(list);
}
catch (Exception e) {
this.logger.error("\u7d27\u6025\u758f\u6563\u5206\u7ec4\u6279\u91cf\u6dfb\u52a0\u8bbe\u5907\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsUrgentGroupDeviceDelDTO dto) throws DataAccessException {
try {
return this.acsUrgentGroupDeviceDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u7d27\u6025\u758f\u6563\u5206\u7ec4\u6279\u91cf\u5220\u9664\u8bbe\u5907\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsUrgentGroupDeviceResultDTO> query(AcsUrgentGroupDeviceQueryDTO dto) throws DataAccessException {
try {
return this.acsUrgentGroupDeviceDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u7d27\u6025\u758f\u6563\u5206\u7ec4\u8bbe\u5907\u5173\u8054\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.ClockDeviceResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.device.dao.ClockDeviceDao
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.device;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto.ClockDeviceResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.device.dao.ClockDeviceDao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class ClockDeviceManager
extends AbstractCloudwalkManager {
@Autowired
private ClockDeviceDao clockDeviceDao;
public String getAreaIdByDeviceId(String deviceId) throws DataAccessException {
try {
return this.clockDeviceDao.getAreaIdByDeviceId(deviceId);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u8bbe\u5907id\u67e5\u8be2\u8bbe\u5907\u6240\u5c5e\u697c\u5c42id\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<String> getDeviceIds() throws DataAccessException {
try {
return this.clockDeviceDao.getDeviceIds();
}
catch (Exception e) {
this.logger.error("\u83b7\u53d6\u6240\u6709\u7684\u6253\u5361\u8bbe\u5907id\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<ClockDeviceResultDTO> listAll() throws DataAccessException {
try {
return this.clockDeviceDao.listAll();
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u6240\u6709\u8bbe\u5907\u6240\u5c5e\u697c\u5c42id\u5f02\u5e38\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,121 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.utils.ApplicationContextUtils
* cn.cloudwalk.common.ninca.accesscontrol.annotation.ExcelAttribute
* cn.cloudwalk.common.ninca.accesscontrol.annotation.ExcelBytesAttribute
* cn.cloudwalk.common.ninca.accesscontrol.util.StringUtils
* cn.cloudwalk.intelligent.davinci.common.exception.DavinciServiceException
* cn.cloudwalk.intelligent.davinci.storage.manager.FileStorageManager
* com.google.common.base.Stopwatch
* javax.annotation.PreDestroy
* org.slf4j.Logger
* org.slf4j.LoggerFactory
* org.springframework.beans.factory.annotation.Autowired
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.export;
import cn.cloudwalk.cloud.utils.ApplicationContextUtils;
import cn.cloudwalk.common.ninca.accesscontrol.annotation.ExcelAttribute;
import cn.cloudwalk.common.ninca.accesscontrol.annotation.ExcelBytesAttribute;
import cn.cloudwalk.common.ninca.accesscontrol.util.StringUtils;
import cn.cloudwalk.intelligent.davinci.common.exception.DavinciServiceException;
import cn.cloudwalk.intelligent.davinci.storage.manager.FileStorageManager;
import com.google.common.base.Stopwatch;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.RecursiveAction;
import java.util.concurrent.TimeUnit;
import javax.annotation.PreDestroy;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AcsParallelismDownloadManager {
private static final Logger LOGGER = LoggerFactory.getLogger(AcsParallelismDownloadManager.class);
@Autowired
private FileStorageManager fileStorageManager;
private static ForkJoinPool parallelDownloadPool = new ForkJoinPool(10);
@PreDestroy
public void destroy() {
parallelDownloadPool.shutdown();
}
public <T> void parallelResolve(List<T> list, Class<T> clazz) throws Exception {
Field[] allFields = clazz.getDeclaredFields();
HashMap<String, Field> fieldMap = new HashMap<String, Field>();
for (Field field : allFields) {
ExcelBytesAttribute bytesAttribute;
String pathField;
if (!field.isAnnotationPresent(ExcelAttribute.class) || !field.isAnnotationPresent(ExcelBytesAttribute.class) || !StringUtils.isNotBlank((String)(pathField = (bytesAttribute = field.getAnnotation(ExcelBytesAttribute.class)).pathField()))) continue;
String getMethod = "get" + StringUtils.toUpperCase((String)pathField, (int)1);
fieldMap.put(getMethod, field);
}
if (fieldMap.size() == 0) {
return;
}
Stopwatch stopwatch = Stopwatch.createStarted();
BatchDownloadTask<T> batchDownloadTask = new BatchDownloadTask<T>(fieldMap, clazz, list);
parallelDownloadPool.submit(batchDownloadTask).get();
LOGGER.info("\u4e0b\u8f7d\u56fe\u7247\u8017\u65f6:{},\u8bb0\u5f55\u6761\u6570:{}", (Object)stopwatch.elapsed(TimeUnit.SECONDS), (Object)list.size());
}
private static class BatchDownloadTask<T>
extends RecursiveAction {
private static final Logger LOGGER = LoggerFactory.getLogger(BatchDownloadTask.class);
private static final Integer SIZE = 10;
private Map<String, Field> fileField;
private Class cls;
private List<T> list;
public BatchDownloadTask(Map<String, Field> fileField, Class cls, List<T> list) {
this.fileField = fileField;
this.cls = cls;
this.list = list;
}
@Override
protected void compute() {
if (this.list.size() <= SIZE) {
for (T entry : this.list) {
try {
this.computeSingle(entry, this.fileField, this.cls);
}
catch (Exception e) {
LOGGER.error("\u5e76\u884c\u5904\u7406\u6587\u4ef6\u4e0b\u8f7d\u51fa\u73b0\u5f02\u5e38", (Throwable)e);
}
}
return;
}
int middle = this.list.size() / 2;
BatchDownloadTask<T> taskLeft = new BatchDownloadTask<T>(this.fileField, this.cls, this.list.subList(0, middle));
BatchDownloadTask<T> taskRight = new BatchDownloadTask<T>(this.fileField, this.cls, this.list.subList(middle, this.list.size()));
BatchDownloadTask.invokeAll(taskLeft, taskRight);
}
private void computeSingle(T obj, Map<String, Field> fileField, Class cls) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException, DavinciServiceException {
for (Map.Entry<String, Field> fieldEntry : fileField.entrySet()) {
Method getMethod = cls.getMethod(fieldEntry.getKey(), new Class[0]);
Object filePathObj = getMethod.invoke(obj, new Object[0]);
String filePath = null;
if (filePathObj == null || !StringUtils.isNotBlank((String)(filePath = (String)filePathObj))) continue;
FileStorageManager fileStorageManager = (FileStorageManager)ApplicationContextUtils.getBean(FileStorageManager.class);
byte[] bytes = fileStorageManager.fileDownload(filePath);
String setMethodName = "set" + StringUtils.toUpperCase((String)fieldEntry.getValue().getName(), (int)1);
Method setMethod = cls.getMethod(setMethodName, fieldEntry.getValue().getType());
setMethod.invoke(obj, new Object[]{bytes});
}
}
}
}
@@ -0,0 +1,109 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleAddDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleDeleteDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleEditDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleQueryDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleResultDto
* cn.cloudwalk.data.ninca.accesscontrol.passtime.dao.AcsPassRuleDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.passtime;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleAddDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleDeleteDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleEditDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleQueryDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassRuleResultDto;
import cn.cloudwalk.data.ninca.accesscontrol.passtime.dao.AcsPassRuleDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsPassRuleManager
extends AbstractCloudwalkManager {
@Resource
private AcsPassRuleDao acsPassRuleDao;
public Integer add(AcsPassRuleAddDto dto) throws DataAccessException {
try {
return this.acsPassRuleDao.insert(dto);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u901a\u884c\u89c4\u5219\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer edit(AcsPassRuleEditDto dto) throws DataAccessException {
try {
return this.acsPassRuleDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u7f16\u8f91\u901a\u884c\u89c4\u5219\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsPassRuleDeleteDto dto) throws DataAccessException {
try {
return this.acsPassRuleDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u901a\u884c\u89c4\u5219\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsPassRuleDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u5206\u9875\u67e5\u8be2\u901a\u884c\u89c4\u5219\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsPassRuleResultDto> query(AcsPassRuleQueryDto dto) throws DataAccessException {
try {
return this.acsPassRuleDao.list(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u7d27\u901a\u884c\u89c4\u5219\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public List<String> listDeviceIdsByDto(AcsPassRuleQueryDto dto) throws DataAccessException {
try {
return this.acsPassRuleDao.listDeviceIdsByDto(dto);
}
catch (Exception e) {
this.logger.error("\u83b7\u53d6\u56fe\u5e93\u5173\u8054\u7684\u8bbe\u5907\u4fe1\u606f\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public String getByName(AcsPassRuleQueryDto dto) throws DataAccessException {
try {
return this.acsPassRuleDao.getByName(dto);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u89c4\u5219\u540d\u79f0\u83b7\u53d6\u89c4\u5219id\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,89 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeAddDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeDeleteDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeEditDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeQueryDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeResultDto
* cn.cloudwalk.data.ninca.accesscontrol.passtime.dao.AcsPassTimeDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.passtime;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeAddDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeDeleteDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeEditDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeQueryDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassTimeResultDto;
import cn.cloudwalk.data.ninca.accesscontrol.passtime.dao.AcsPassTimeDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsPassTimeManager
extends AbstractCloudwalkManager {
@Resource
private AcsPassTimeDao acsPassTimeDao;
public Integer add(AcsPassTimeAddDto dto) throws DataAccessException {
try {
return this.acsPassTimeDao.insert(dto);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u901a\u884c\u65f6\u95f4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer edit(AcsPassTimeEditDto dto) throws DataAccessException {
try {
return this.acsPassTimeDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u7f16\u8f91\u901a\u884c\u65f6\u95f4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsPassTimeDeleteDto dto) throws DataAccessException {
try {
return this.acsPassTimeDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u901a\u884c\u65f6\u95f4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsPassTimeResultDto> page(AcsPassTimeQueryDto dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsPassTimeDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u5206\u9875\u67e5\u8be2\u901a\u884c\u65f6\u95f4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsPassTimeResultDto> query(AcsPassTimeQueryDto dto) throws DataAccessException {
try {
return this.acsPassTimeDao.list(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u901a\u884c\u65f6\u95f4\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,85 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefAddDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefDeleteDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefEditDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefQueryDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefResultDto
* cn.cloudwalk.data.ninca.accesscontrol.passtime.dao.AcsPassableRefDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.passtime;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefAddDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefDeleteDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefEditDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefQueryDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto.AcsPassableRefResultDto;
import cn.cloudwalk.data.ninca.accesscontrol.passtime.dao.AcsPassableRefDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsPassableRefManager
extends AbstractCloudwalkManager {
@Resource
private AcsPassableRefDao acsPassableRefDao;
public Integer add(AcsPassableRefAddDto dto) throws DataAccessException {
try {
return this.acsPassableRefDao.insert(dto);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u56fe\u5e93\u4eba\u5458\u65f6\u95f4\u5173\u8054\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer batchAdd(List<AcsPassableRefAddDto> dtos) throws DataAccessException {
try {
return this.acsPassableRefDao.batchInsert(dtos);
}
catch (Exception e) {
this.logger.error("\u6dfb\u52a0\u56fe\u5e93\u4eba\u5458\u65f6\u95f4\u5173\u8054\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer edit(AcsPassableRefEditDto dto) throws DataAccessException {
try {
return this.acsPassableRefDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u7f16\u8f91\u56fe\u5e93\u4eba\u5458\u65f6\u95f4\u5173\u8054\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer delete(AcsPassableRefDeleteDto dto) throws DataAccessException {
try {
return this.acsPassableRefDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u56fe\u5e93\u4eba\u5458\u65f6\u95f4\u5173\u8054\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsPassableRefResultDto> query(AcsPassableRefQueryDto dto) throws DataAccessException {
try {
return this.acsPassableRefDao.list(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u56fe\u5e93\u4eba\u5458\u65f6\u95f4\u5173\u8054\u5f02\u5e38\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,87 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonAddDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonDelDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonEditDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonGetsDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonQueryDto
* cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonResultDto
* cn.cloudwalk.data.ninca.accesscontrol.person.dao.AcsPersonDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.person;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonAddDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonDelDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonEditDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonGetsDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonQueryDto;
import cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto.AcsPersonResultDto;
import cn.cloudwalk.data.ninca.accesscontrol.person.dao.AcsPersonDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsPersonManager
extends AbstractCloudwalkManager {
@Resource
private AcsPersonDao acsPersonDao;
public int add(AcsPersonAddDto dto) throws DataAccessException {
try {
return this.acsPersonDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u65b0\u589e\u95e8\u7981\u4eba\u5458\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public int update(AcsPersonEditDto dto) throws DataAccessException {
try {
return this.acsPersonDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u4fee\u6539\u95e8\u7981\u4eba\u5458\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public int delete(AcsPersonDelDto dto) throws DataAccessException {
try {
return this.acsPersonDao.delete(dto);
}
catch (Exception e) {
this.logger.error("\u5220\u9664\u95e8\u7981\u4eba\u5458\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsPersonResultDto> gets(AcsPersonGetsDto getsDto) throws DataAccessException {
try {
return this.acsPersonDao.gets(getsDto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u95e8\u7981\u4eba\u5458\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsPersonResultDto> query(AcsPersonQueryDto queryDto) throws DataAccessException {
try {
return this.acsPersonDao.query(queryDto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u95e8\u7981\u4eba\u5458\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,81 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordDetailQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordDetailQueryResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordQueryResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordEditDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordQueryDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsElevatorRecordDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordDetailQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordDetailQueryResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsElevatorRecordQueryResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordEditDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordQueryDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsElevatorRecordDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsElevatorRecordManager
extends AbstractCloudwalkManager {
@Resource
private AcsElevatorRecordDao acsElevatorRecordDao;
public Integer add(AcsElevatorRecordAddDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u5237\u8138\u6d3e\u68af\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer update(AcsOpenDoorRecordEditDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u4fee\u6539\u5f00\u95e8\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
try {
return this.acsElevatorRecordDao.detail(queryDTO, pageInfo);
}
catch (Exception e) {
this.logger.error("\u5237\u8138\u6d3e\u68af\u8bb0\u5f55\u8be6\u60c5\u67e5\u8be2\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsElevatorRecordDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u5f00\u95e8\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,87 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordEditDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsEvacuateRecordDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordEditDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsEvacuateRecordResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsEvacuateRecordDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsEvacuateRecordManager
extends AbstractCloudwalkManager {
@Resource
private AcsEvacuateRecordDao acsEvacuateRecordDao;
public Integer add(AcsEvacuateRecordAddDTO dto) throws DataAccessException {
try {
return this.acsEvacuateRecordDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u589e\u52a0\u758f\u6563\u8bb0\u5f55\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer batchAdd(List<AcsEvacuateRecordAddDTO> list) throws DataAccessException {
try {
return this.acsEvacuateRecordDao.batchAdd(list);
}
catch (Exception e) {
this.logger.error("\u6279\u91cf\u589e\u52a0\u758f\u6563\u8bb0\u5f55\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer update(AcsEvacuateRecordEditDTO dto) throws DataAccessException {
try {
return this.acsEvacuateRecordDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u758f\u6563\u8bb0\u5f55\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsEvacuateRecordResultDTO> page(AcsEvacuateRecordQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsEvacuateRecordDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u758f\u6563\u8bb0\u5f55\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsEvacuateRecordResultDTO> query(AcsEvacuateRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsEvacuateRecordDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u758f\u6563\u8bb0\u5f55\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,85 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordEditDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordQueryResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordStatisticsResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsOpenDoorRecordDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordEditDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordQueryResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOpenDoorRecordStatisticsResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsOpenDoorRecordDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsOpenDoorRecordManager
extends AbstractCloudwalkManager {
@Resource
private AcsOpenDoorRecordDao acsOpenDoorRecordDao;
public Integer add(AcsOpenDoorRecordAddDTO dto) throws DataAccessException {
try {
return this.acsOpenDoorRecordDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u5f00\u95e8\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsOpenDoorRecordStatisticsResultDTO> statisticsByDay(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsOpenDoorRecordDao.statisticsByDay(dto);
}
catch (Exception e) {
this.logger.error("\u6309\u65e5\u7edf\u8ba1\u5f00\u95e8\u6b21\u6570\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer update(AcsOpenDoorRecordEditDTO dto) throws DataAccessException {
try {
return this.acsOpenDoorRecordDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u4fee\u6539\u5f00\u95e8\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsOpenDoorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsOpenDoorRecordDao.query(dto);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u5f00\u95e8\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
public Integer updateRecogOpenDoorType(String openDoorTable, String recogTable, Long startTime, Long endTime) throws DataAccessException {
try {
return this.acsOpenDoorRecordDao.updateRecogOpenDoorType(openDoorTable, recogTable, startTime, endTime);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u8bc6\u522b\u8bb0\u5f55\u5f00\u95e8\u7c7b\u578b\u5931\u8d25\uff0c\u539f\u56e0\uff1a[{}]", (Object)e.getMessage(), (Object)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,81 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordEditDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordPageDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordQueryResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsOperateRecordDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordEditDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordPageDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordQueryResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsOperateRecordResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsOperateRecordDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsOperateRecordManager
extends AbstractCloudwalkManager {
@Resource
private AcsOperateRecordDao acsOperateRecordDao;
public int add(AcsOperateRecordAddDTO dto) throws DataAccessException {
try {
return this.acsOperateRecordDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u95e8\u7981\u64cd\u4f5c\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public int update(AcsOperateRecordEditDTO dto) throws DataAccessException {
try {
return this.acsOperateRecordDao.update(dto);
}
catch (Exception e) {
this.logger.error("\u66f4\u65b0\u95e8\u7981\u64cd\u4f5c\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsOperateRecordQueryResultDTO> queryOrderByOperateTime(AcsOperateRecordQueryDTO queryDTO) throws DataAccessException {
try {
return this.acsOperateRecordDao.queryOrderByOperateTime(queryDTO);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u95e8\u7981\u64cd\u4f5c\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsOperateRecordResultDTO> pageRecord(AcsOperateRecordPageDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
try {
return this.acsOperateRecordDao.pageRecord(queryDTO, pageInfo);
}
catch (Exception e) {
this.logger.error("\u7acb\u523b\u5f00\u95e8\u8bb0\u5f55\u8be6\u60c5\u67e5\u8be2\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,69 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordPageDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordStatisticsResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsRecogRecordDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordPageDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecogRecordStatisticsResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsRecogRecordDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsRecogRecordManager
extends AbstractCloudwalkManager {
@Resource
private AcsRecogRecordDao acsRecogRecordDao;
public Integer add(AcsRecogRecordAddDTO dto) throws DataAccessException {
try {
return this.acsRecogRecordDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u8bc6\u522b\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO dto, CloudwalkPageInfo page) throws DataAccessException {
try {
return this.acsRecogRecordDao.page(dto, page);
}
catch (Exception e) {
this.logger.error("\u5206\u9875\u67e5\u8be2\u8bc6\u522b\u8bb0\u5f55\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsRecogRecordStatisticsResultDTO> statisticsByDay(AcsRecogRecordQueryDTO dto) throws DataAccessException {
try {
return this.acsRecogRecordDao.statisticsByDay(dto);
}
catch (Exception e) {
this.logger.error("\u6309\u65e5\u7edf\u8ba1\u8bc6\u522b\u6b21\u6570\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,69 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.cloud.page.CloudwalkPageAble
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordDetailQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordDetailQueryResultDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordThreeSendQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsTemperatureRecordDetailQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsTemperatureRecordDetailQueryResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsRecordDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordDetailQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordDetailQueryResultDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordThreeSendQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsTemperatureRecordDetailQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsTemperatureRecordDetailQueryResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsRecordDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsRecordManager
extends AbstractCloudwalkManager {
@Resource
private AcsRecordDao acsRecordDao;
public CloudwalkPageAble<AcsRecordDetailQueryResultDTO> detail(AcsRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
try {
return this.acsRecordDao.detail(queryDTO, pageInfo);
}
catch (Exception e) {
this.logger.error("\u5f00\u95e8\u8bb0\u5f55\u8be6\u60c5\u67e5\u8be2\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public CloudwalkPageAble<AcsTemperatureRecordDetailQueryResultDTO> temperature(AcsTemperatureRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
try {
return this.acsRecordDao.temperature(queryDTO, pageInfo);
}
catch (Exception e) {
this.logger.error("\u5f02\u5e38\u4f53\u6e29\u8bb0\u5f55\u8be6\u60c5\u67e5\u8be2\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsRecordDetailQueryResultDTO> listByTime(AcsRecordThreeSendQueryDTO queryDTO) throws DataAccessException {
try {
return this.acsRecordDao.listByTime(queryDTO);
}
catch (Exception e) {
this.logger.error("\u6839\u636e\u65f6\u95f4\u67e5\u8be2\u6210\u529f\u7684\u5f00\u95e8\u8bb0\u5f55\u5931\u8d25,\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,61 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.exception.DataAccessException
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordStatisticsAddDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordStatisticsQueryDTO
* cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordStatisticsResultDTO
* cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsRecordStatisticsDao
* javax.annotation.Resource
* org.springframework.stereotype.Component
*/
package cn.cloudwalk.biz.ninca.accesscontrol.record;
import cn.cloudwalk.biz.ninca.accesscontrol.common.AbstractCloudwalkManager;
import cn.cloudwalk.cloud.exception.DataAccessException;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordStatisticsAddDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordStatisticsQueryDTO;
import cn.cloudwalk.common.ninca.accesscontrol.bean.record.AcsRecordStatisticsResultDTO;
import cn.cloudwalk.data.ninca.accesscontrol.record.dao.AcsRecordStatisticsDao;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
@Component
public class AcsRecordStatisticsManager
extends AbstractCloudwalkManager {
@Resource
private AcsRecordStatisticsDao acsRecordStatisticsDao;
public int add(AcsRecordStatisticsAddDTO dto) throws DataAccessException {
try {
return this.acsRecordStatisticsDao.add(dto);
}
catch (Exception e) {
this.logger.error("\u4fdd\u5b58\u95e8\u7981\u8bb0\u5f55\u7edf\u8ba1\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public int addList(List<AcsRecordStatisticsAddDTO> dto) throws DataAccessException {
try {
return this.acsRecordStatisticsDao.addList(dto);
}
catch (Exception e) {
this.logger.error("\u6279\u91cf\u4fdd\u5b58\u95e8\u7981\u8bb0\u5f55\u7edf\u8ba1\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
public List<AcsRecordStatisticsResultDTO> query(AcsRecordStatisticsQueryDTO queryDTO) throws DataAccessException {
try {
return this.acsRecordStatisticsDao.query(queryDTO);
}
catch (Exception e) {
this.logger.error("\u67e5\u8be2\u95e8\u7981\u8bb0\u5f55\u7edf\u8ba1\u5931\u8d25\uff0c\u539f\u56e0\uff1a", (Throwable)e);
throw new DataAccessException((Throwable)e);
}
}
}
@@ -0,0 +1,2 @@
Summary for /tmp/crk_lib_extract_6o_f40r3/ninca-crk-access-control-biz-2.9.1_210630-SNAPSHOT.jar
Decompiled with CFR 0.152
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.cloudwalk.ninca</groupId>
<artifactId>ninca-crk-from-lib-reactor</artifactId>
<version>2.9.1_210630-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>ninca-crk-access-control-common</artifactId>
<name>ninca-crk-access-control-common</name>
<description>CFR from ninca-crk-access-control-common-2.9.1_210630-SNAPSHOT.jar (embedded pom: none)</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>cn.cloudwalk.cloud</groupId>
<artifactId>cloudwalk-common-result</artifactId>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>net.lingala.zip4j</groupId>
<artifactId>zip4j</artifactId>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,15 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(value={ElementType.FIELD})
@Retention(value=RetentionPolicy.RUNTIME)
public @interface DavinciPic {
}
@@ -0,0 +1,28 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(value=RetentionPolicy.RUNTIME)
@Target(value={ElementType.FIELD})
public @interface ExcelAttribute {
public String name();
public String column() default "";
public String[] combo() default {};
public boolean isExport() default true;
public boolean isMark() default false;
public boolean isDate() default false;
public boolean isPic() default false;
}
@@ -0,0 +1,16 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(value=RetentionPolicy.RUNTIME)
@Target(value={ElementType.FIELD})
public @interface ExcelBytesAttribute {
public String pathField() default "";
}
@@ -0,0 +1,62 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
public class AcsCheckDeviceAddDTO {
private String id;
private String deviceId;
private String deviceCode;
private String deviceName;
private String areaId;
private String areaName;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
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 getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
}
@@ -0,0 +1,46 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.util.List;
public class AcsCheckDeviceQueryDTO {
private String deviceId;
private String areaId;
private String deviceName;
private List<String> areaIds;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public List<String> getAreaIds() {
return this.areaIds;
}
public void setAreaIds(List<String> areaIds) {
this.areaIds = areaIds;
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class AcsCheckDeviceResultDTO
implements Serializable {
private static final long serialVersionUID = 6868258119634367362L;
private String id;
private String deviceId;
private String deviceCode;
private String deviceName;
private String areaId;
private String areaName;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
}
@@ -0,0 +1,80 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -6809857221409278880L;
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
private String parentDeviceId;
private String imageStoreId;
private Integer openStatus;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getParentDeviceId() {
return this.parentDeviceId;
}
public void setParentDeviceId(String parentDeviceId) {
this.parentDeviceId = parentDeviceId;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public Integer getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(Integer openStatus) {
this.openStatus = openStatus;
}
}
@@ -0,0 +1,53 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceAttrAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -7913304542356167455L;
private String businessId;
private String deviceId;
private String attrCode;
private String attrValue;
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 getAttrCode() {
return this.attrCode;
}
public void setAttrCode(String attrCode) {
this.attrCode = attrCode;
}
public String getAttrValue() {
return this.attrValue;
}
public void setAttrValue(String attrValue) {
this.attrValue = attrValue;
}
}
@@ -0,0 +1,53 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceAttrEditDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -7532607433040246448L;
private String businessId;
private String deviceId;
private String attrCode;
private String attrValue;
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 getAttrCode() {
return this.attrCode;
}
public void setAttrCode(String attrCode) {
this.attrCode = attrCode;
}
public String getAttrValue() {
return this.attrValue;
}
public void setAttrValue(String attrValue) {
this.attrValue = attrValue;
}
}
@@ -0,0 +1,58 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsDeviceAttrQueryDto
implements Serializable {
private static final long serialVersionUID = -2548426600401706270L;
private String id;
private String businessId;
private String deviceId;
private List<String> deviceIds;
private String attrCode;
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 List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public String getAttrCode() {
return this.attrCode;
}
public void setAttrCode(String attrCode) {
this.attrCode = attrCode;
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceAttrResultDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 8438341513728417089L;
private String businessId;
private String deviceId;
private String attrCode;
private String attrValue;
public String getBusinessId() {
return this.businessId;
}
public String deviceAndAttrCode() {
return this.deviceId + "_" + this.attrCode;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getAttrCode() {
return this.attrCode;
}
public void setAttrCode(String attrCode) {
this.attrCode = attrCode;
}
public String getAttrValue() {
return this.attrValue;
}
public void setAttrValue(String attrValue) {
this.attrValue = attrValue;
}
}
@@ -0,0 +1,58 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsDeviceDeleteDTO
implements Serializable {
private static final long serialVersionUID = -8303715838175783698L;
private String businessId;
private String deviceId;
private List<String> deviceIds;
private List<String> ids;
private String parentDeviceId;
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 List<String> getIds() {
return this.ids;
}
public void setIds(List<String> ids) {
this.ids = ids;
}
public String getParentDeviceId() {
return this.parentDeviceId;
}
public void setParentDeviceId(String parentDeviceId) {
this.parentDeviceId = parentDeviceId;
}
}
@@ -0,0 +1,103 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsDeviceQueryDTO
implements Serializable {
private static final long serialVersionUID = -9107652629099620576L;
private String id;
private List<String> ids;
private String businessId;
private String deviceId;
private List<String> deviceIds;
private String deviceCode;
private String parentDeviceId;
private List<String> parentDeviceIds;
private Integer openStatus;
private Integer queryParent;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public List<String> getIds() {
return this.ids;
}
public void setIds(List<String> ids) {
this.ids = ids;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getParentDeviceId() {
return this.parentDeviceId;
}
public void setParentDeviceId(String parentDeviceId) {
this.parentDeviceId = parentDeviceId;
}
public List<String> getParentDeviceIds() {
return this.parentDeviceIds;
}
public void setParentDeviceIds(List<String> parentDeviceIds) {
this.parentDeviceIds = parentDeviceIds;
}
public Integer getQueryParent() {
return this.queryParent;
}
public void setQueryParent(Integer queryParent) {
this.queryParent = queryParent;
}
public Integer getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(Integer openStatus) {
this.openStatus = openStatus;
}
}
@@ -0,0 +1,80 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6868258119634367362L;
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
private String parentDeviceId;
private String imageStoreId;
private Integer openStatus;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getParentDeviceId() {
return this.parentDeviceId;
}
public void setParentDeviceId(String parentDeviceId) {
this.parentDeviceId = parentDeviceId;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public Integer getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(Integer openStatus) {
this.openStatus = openStatus;
}
}
@@ -0,0 +1,44 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsDeviceTaskAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6909321999650444051L;
private Integer allDevices;
private Integer bindDevices;
private Integer isStop;
public Integer getAllDevices() {
return this.allDevices;
}
public void setAllDevices(Integer allDevices) {
this.allDevices = allDevices;
}
public Integer getBindDevices() {
return this.bindDevices;
}
public void setBindDevices(Integer bindDevices) {
this.bindDevices = bindDevices;
}
public Integer getIsStop() {
return this.isStop;
}
public void setIsStop(Integer isStop) {
this.isStop = isStop;
}
}
@@ -0,0 +1,48 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class AcsDeviceTaskDTO
implements Serializable {
private static final long serialVersionUID = -3746361327881264974L;
private String id;
private Integer allDevices;
private Integer bindDevices;
private Integer isStop;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Integer getAllDevices() {
return this.allDevices;
}
public void setAllDevices(Integer allDevices) {
this.allDevices = allDevices;
}
public Integer getBindDevices() {
return this.bindDevices;
}
public void setBindDevices(Integer bindDevices) {
this.bindDevices = bindDevices;
}
public Integer getIsStop() {
return this.isStop;
}
public void setIsStop(Integer isStop) {
this.isStop = isStop;
}
}
@@ -0,0 +1,39 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class AcsDeviceTypeDTO
implements Serializable {
private static final long serialVersionUID = -3746361327881264974L;
private String id;
private String deviceTypeCode;
private String deviceTypeName;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getDeviceTypeCode() {
return this.deviceTypeCode;
}
public void setDeviceTypeCode(String deviceTypeCode) {
this.deviceTypeCode = deviceTypeCode;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class AcsDeviceTypeFeaturesDto
implements Serializable {
private static final long serialVersionUID = 4718346694882967147L;
private String id;
private String deviceTypeCode;
private String featureCode;
private String featureName;
private Integer featureStatus;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getDeviceTypeCode() {
return this.deviceTypeCode;
}
public void setDeviceTypeCode(String deviceTypeCode) {
this.deviceTypeCode = deviceTypeCode;
}
public String getFeatureCode() {
return this.featureCode;
}
public void setFeatureCode(String featureCode) {
this.featureCode = featureCode;
}
public String getFeatureName() {
return this.featureName;
}
public void setFeatureName(String featureName) {
this.featureName = featureName;
}
public Integer getFeatureStatus() {
return this.featureStatus;
}
public void setFeatureStatus(Integer featureStatus) {
this.featureStatus = featureStatus;
}
}
@@ -0,0 +1,52 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class AcsDeviceUpdateStatusDTO
implements Serializable {
private static final long serialVersionUID = -4416149400669924449L;
private String deviceId;
private Integer openStatus;
private String businessId;
private Long lastUpdateTime;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public Integer getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(Integer openStatus) {
this.openStatus = openStatus;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Long getLastUpdateTime() {
return this.lastUpdateTime;
}
public void setLastUpdateTime(Long lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
public String toString() {
return "AcsDeviceUpdateStatusDTO{deviceId='" + this.deviceId + '\'' + ", openStatus=" + this.openStatus + ", businessId='" + this.businessId + '\'' + ", lastUpdateTime=" + this.lastUpdateTime + '}';
}
}
@@ -0,0 +1,40 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
import java.util.List;
public class AcsUrgentDeviceDeleteDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6231865949336237802L;
private String businessId;
private List<String> deviceIds;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public String toString() {
return "AcsUrgentDeviceDeleteDTO{businessId='" + this.businessId + '\'' + ", deviceIds=" + this.deviceIds + '}';
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentDeviceGroupAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 5091992103051974432L;
private String businessId;
private String groupName;
private Integer isDefaultGroup;
private Integer groupStatus;
private String createUserName;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Integer getIsDefaultGroup() {
return this.isDefaultGroup;
}
public void setIsDefaultGroup(Integer isDefaultGroup) {
this.isDefaultGroup = isDefaultGroup;
}
public Integer getGroupStatus() {
return this.groupStatus;
}
public void setGroupStatus(Integer groupStatus) {
this.groupStatus = groupStatus;
}
public String getCreateUserName() {
return this.createUserName;
}
public void setCreateUserName(String createUserName) {
this.createUserName = createUserName;
}
public String toString() {
return "AcsUrgentDeviceGroupAddDTO{businessId='" + this.businessId + '\'' + ", groupName='" + this.groupName + '\'' + ", isDefaultGroup=" + this.isDefaultGroup + ", groupStatus=" + this.groupStatus + ", createUserName='" + this.createUserName + '\'' + '}';
}
}
@@ -0,0 +1,35 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsUrgentDeviceGroupDelDTO
implements Serializable {
private static final long serialVersionUID = 4306256495491706656L;
private String businessId;
private List<String> ids;
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;
}
public String toString() {
return "AcsUrgentDeviceGroupDelDTO{businessId='" + this.businessId + '\'' + ", ids=" + this.ids + '}';
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentDeviceGroupEditDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 2838117020789078114L;
private String businessId;
private String groupName;
private Integer isDefaultGroup;
private Integer groupStatus;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Integer getIsDefaultGroup() {
return this.isDefaultGroup;
}
public void setIsDefaultGroup(Integer isDefaultGroup) {
this.isDefaultGroup = isDefaultGroup;
}
public Integer getGroupStatus() {
return this.groupStatus;
}
public void setGroupStatus(Integer groupStatus) {
this.groupStatus = groupStatus;
}
public String toString() {
return "AcsUrgentDeviceGroupEditDTO{businessId='" + this.businessId + '\'' + ", groupName='" + this.groupName + '\'' + ", isDefaultGroup=" + this.isDefaultGroup + ", groupStatus=" + this.groupStatus + '}';
}
}
@@ -0,0 +1,71 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsUrgentDeviceGroupQueryDTO
implements Serializable {
private static final long serialVersionUID = -5511710427061785804L;
private String id;
private List<String> ids;
private String businessId;
private Integer isDefaultGroup;
private Integer groupStatus;
private String groupName;
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 Integer getIsDefaultGroup() {
return this.isDefaultGroup;
}
public void setIsDefaultGroup(Integer isDefaultGroup) {
this.isDefaultGroup = isDefaultGroup;
}
public Integer getGroupStatus() {
return this.groupStatus;
}
public void setGroupStatus(Integer groupStatus) {
this.groupStatus = groupStatus;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String toString() {
return "AcsUrgentDeviceGroupQueryDTO{id='" + this.id + '\'' + ", ids=" + this.ids + ", businessId='" + this.businessId + '\'' + ", isDefaultGroup=" + this.isDefaultGroup + ", groupStatus=" + this.groupStatus + ", groupName='" + this.groupName + '\'' + '}';
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentDeviceGroupResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 5011004440134284355L;
private String businessId;
private String groupName;
private Integer isDefaultGroup;
private Integer groupStatus;
private String createUserName;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Integer getIsDefaultGroup() {
return this.isDefaultGroup;
}
public void setIsDefaultGroup(Integer isDefaultGroup) {
this.isDefaultGroup = isDefaultGroup;
}
public Integer getGroupStatus() {
return this.groupStatus;
}
public void setGroupStatus(Integer groupStatus) {
this.groupStatus = groupStatus;
}
public String getCreateUserName() {
return this.createUserName;
}
public void setCreateUserName(String createUserName) {
this.createUserName = createUserName;
}
public String toString() {
return "AcsUrgentDeviceGroupResultDTO{businessId='" + this.businessId + '\'' + ", groupName='" + this.groupName + '\'' + ", isDefaultGroup=" + this.isDefaultGroup + ", groupStatus=" + this.groupStatus + ", createUserName='" + this.createUserName + '\'' + '}';
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentDeviceNewDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6231865949336237802L;
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
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 toString() {
return "AcsUrgentDeviceNewDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + '}';
}
}
@@ -0,0 +1,25 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class AcsUrgentDeviceQueryDTO
implements Serializable {
private static final long serialVersionUID = -758066469035953050L;
private String businessId;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String toString() {
return "AcsUrgentDevicePageDTO{businessId='" + this.businessId + '\'' + '}';
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentDeviceResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6231865949336237802L;
private String id;
private String businessId;
private String deviceId;
private String deviceCode;
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
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 toString() {
return "AcsUrgentDeviceResultDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + '}';
}
}
@@ -0,0 +1,48 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentGroupDeviceAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6769607809004334015L;
private String businessId;
private String groupId;
private String deviceId;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String toString() {
return "AcsUrgentGroupDeviceAddDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", deviceId='" + this.deviceId + '\'' + '}';
}
}
@@ -0,0 +1,49 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
import java.util.List;
public class AcsUrgentGroupDeviceDelDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 5129116149634943109L;
private String businessId;
private String groupId;
private List<String> deviceIds;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public String toString() {
return "AcsUrgentGroupDeviceDelDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", deviceIds=" + this.deviceIds + '}';
}
}
@@ -0,0 +1,62 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
import java.util.List;
public class AcsUrgentGroupDeviceQueryDTO
implements Serializable {
private static final long serialVersionUID = 7429658346910749211L;
private String businessId;
private String groupId;
private String deviceId;
private List<String> deviceIds;
private List<String> groupIds;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
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 List<String> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<String> groupIds) {
this.groupIds = groupIds;
}
public String toString() {
return "AcsUrgentGroupDeviceQueryDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceIds=" + this.deviceIds + ", groupIds=" + this.groupIds + '}';
}
}
@@ -0,0 +1,48 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsUrgentGroupDeviceResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -7029660289514619182L;
private String businessId;
private String groupId;
private String deviceId;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String toString() {
return "AcsUrgentGroupDeviceResultDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", deviceId='" + this.deviceId + '\'' + '}';
}
}
@@ -0,0 +1,30 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.device.dto;
import java.io.Serializable;
public class ClockDeviceResultDTO
implements Serializable {
private static final long serialVersionUID = 6868258119634367362L;
private String areaId;
private String deviceId;
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
}
@@ -0,0 +1,107 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.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 deviceId;
private String deviceCode;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
private String imageStoreId;
private String passableTimeId;
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 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 getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
}
@@ -0,0 +1,40 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.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;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public List<String> getIds() {
return this.ids;
}
public void setIds(List<String> ids) {
this.ids = ids;
}
}
@@ -0,0 +1,89 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.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;
private String passableTimeId;
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 getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
}
@@ -0,0 +1,94 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.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 deviceId;
private String deviceCode;
private String businessId;
private String imageStoreId;
private String passableTimeId;
private List<String> imageStoreIds;
private List<String> ids;
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<String> getIds() {
return this.ids;
}
public void setIds(List<String> ids) {
this.ids = ids;
}
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 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 String getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
public List<String> getImageStoreIds() {
return this.imageStoreIds;
}
public void setImageStoreIds(List<String> imageStoreIds) {
this.imageStoreIds = imageStoreIds;
}
}
@@ -0,0 +1,107 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.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 deviceId;
private String deviceCode;
private String name;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
private String imageStoreId;
private String passableTimeId;
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 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 getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
}
@@ -0,0 +1,71 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassTimeAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 8916652192754051653L;
private String businessId;
private String name;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
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;
}
}
@@ -0,0 +1,31 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPassTimeDeleteDto
implements Serializable {
private static final long serialVersionUID = 3081935105841454547L;
private String businessId;
private List<String> ids;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public List<String> getIds() {
return this.ids;
}
public void setIds(List<String> ids) {
this.ids = ids;
}
}
@@ -0,0 +1,71 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassTimeEditDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 5980878367425094211L;
private String businessId;
private String name;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
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;
}
}
@@ -0,0 +1,30 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import java.io.Serializable;
public class AcsPassTimeQueryDto
implements Serializable {
private static final long serialVersionUID = -2535714280160687444L;
private String id;
private String businessId;
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;
}
}
@@ -0,0 +1,71 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassTimeResultDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 8916652192754051653L;
private String businessId;
private String name;
private String validDateCron;
private String validDateJson;
private Long beginDate;
private Long endDate;
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;
}
}
@@ -0,0 +1,53 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassableRefAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 8862039673079015074L;
private String businessId;
private String imageStoreId;
private String personId;
private String passableTimeId;
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 String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
}
@@ -0,0 +1,67 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPassableRefDeleteDto
implements Serializable {
private static final long serialVersionUID = 6978267403048213285L;
private String businessId;
private List<String> ids;
private String imageStoreId;
private String personId;
private String passableTimeId;
private List<String> personIds;
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;
}
public String getImageStoreId() {
return this.imageStoreId;
}
public void setImageStoreId(String imageStoreId) {
this.imageStoreId = imageStoreId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
public List<String> getPersonIds() {
return this.personIds;
}
public void setPersonIds(List<String> personIds) {
this.personIds = personIds;
}
}
@@ -0,0 +1,36 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassableRefEditDto
extends CloudwalkBaseTimes
implements Serializable {
private String businessId;
private String imageStoreId;
private String personId;
private String passableTimeId;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
}
@@ -0,0 +1,57 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import java.io.Serializable;
public class AcsPassableRefQueryDto
implements Serializable {
private static final long serialVersionUID = 2990630180620450160L;
private String id;
private String businessId;
private String imageStoreId;
private String personId;
private String passableTimeId;
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 String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
}
@@ -0,0 +1,53 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.pass.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPassableRefResultDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -2537911417842226648L;
private String businessId;
private String imageStoreId;
private String personId;
private String passableTimeId;
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 String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
public String getPassableTimeId() {
return this.passableTimeId;
}
public void setPassableTimeId(String passableTimeId) {
this.passableTimeId = passableTimeId;
}
}
@@ -0,0 +1,62 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPersonAddDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 4878973442198857744L;
private String id;
private String businessId;
private String deviceId;
private String imagestoreId;
private String personId;
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 getImagestoreId() {
return this.imagestoreId;
}
public void setImagestoreId(String imagestoreId) {
this.imagestoreId = imagestoreId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
}
@@ -0,0 +1,49 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPersonDelDto
implements Serializable {
private static final long serialVersionUID = 4878973442198857744L;
private String businessId;
private String deviceId;
private String imagestoreId;
private List<String> personIds;
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 getImagestoreId() {
return this.imagestoreId;
}
public void setImagestoreId(String imagestoreId) {
this.imagestoreId = imagestoreId;
}
public List<String> getPersonIds() {
return this.personIds;
}
public void setPersonIds(List<String> personIds) {
this.personIds = personIds;
}
}
@@ -0,0 +1,62 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPersonEditDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 181409784297952861L;
private String id;
private String businessId;
private String deviceId;
private String imagestoreId;
private String personId;
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 getImagestoreId() {
return this.imagestoreId;
}
public void setImagestoreId(String imagestoreId) {
this.imagestoreId = imagestoreId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
}
@@ -0,0 +1,58 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto;
import java.io.Serializable;
import java.util.List;
public class AcsPersonGetsDto
implements Serializable {
private static final long serialVersionUID = 4878973442198857744L;
private List<String> ids;
private String businessId;
private String deviceId;
private String imagestoreId;
private List<String> personIds;
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 String getImagestoreId() {
return this.imagestoreId;
}
public void setImagestoreId(String imagestoreId) {
this.imagestoreId = imagestoreId;
}
public List<String> getPersonIds() {
return this.personIds;
}
public void setPersonIds(List<String> personIds) {
this.personIds = personIds;
}
}
@@ -0,0 +1,56 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto;
import java.io.Serializable;
public class AcsPersonQueryDto
implements Serializable {
private String id;
private String businessId;
private String deviceId;
private String imagestoreId;
private String personId;
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 getImagestoreId() {
return this.imagestoreId;
}
public void setImagestoreId(String imagestoreId) {
this.imagestoreId = imagestoreId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
}
@@ -0,0 +1,62 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.person.dto;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsPersonResultDto
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -8196369969255065278L;
private String id;
private String businessId;
private String deviceId;
private String imagestoreId;
private String personId;
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 getImagestoreId() {
return this.imagestoreId;
}
public void setImagestoreId(String imagestoreId) {
this.imagestoreId = imagestoreId;
}
public String getPersonId() {
return this.personId;
}
public void setPersonId(String personId) {
this.personId = personId;
}
}
@@ -0,0 +1,210 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
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 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 String toString() {
return "AcsElevatorRecordAddDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,120 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
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 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;
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;
}
}
@@ -0,0 +1,288 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.common.ninca.accesscontrol.annotation.DavinciPic;
import java.io.Serializable;
import java.math.BigDecimal;
public class AcsElevatorRecordDetailQueryResultDTO
implements Serializable {
private String openDoorId;
private String panoramaImageRecog;
private String panoramaImageOpen;
private String faceImage;
@DavinciPic
private String registerImage;
private String personName;
private long recognitionTime;
private String districtId;
private String areaId;
private String deviceTypeName;
private String 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;
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private Long dispatchElevatorTime;
public String getOpenDoorId() {
return this.openDoorId;
}
public void setOpenDoorId(String openDoorId) {
this.openDoorId = openDoorId;
}
public String getPanoramaImageRecog() {
return this.panoramaImageRecog;
}
public void setPanoramaImageRecog(String panoramaImageRecog) {
this.panoramaImageRecog = panoramaImageRecog;
}
public String getPanoramaImageOpen() {
return this.panoramaImageOpen;
}
public void setPanoramaImageOpen(String panoramaImageOpen) {
this.panoramaImageOpen = panoramaImageOpen;
}
public String getFaceImage() {
return this.faceImage;
}
public void setFaceImage(String faceImage) {
this.faceImage = faceImage;
}
public String getRegisterImage() {
return this.registerImage;
}
public void setRegisterImage(String registerImage) {
this.registerImage = registerImage;
}
public String getPersonName() {
return this.personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getDistrictId() {
return this.districtId;
}
public void setDistrictId(String districtId) {
this.districtId = districtId;
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getDeviceTypeName() {
return this.deviceTypeName;
}
public void setDeviceTypeName(String deviceTypeName) {
this.deviceTypeName = deviceTypeName;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public BigDecimal getScore() {
return this.score;
}
public void setScore(BigDecimal score) {
this.score = score;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public String getRegRecordId() {
return this.regRecordId;
}
public void setRegRecordId(String regRecordId) {
this.regRecordId = regRecordId;
}
public BigDecimal getThreshold() {
return this.threshold;
}
public void setThreshold(BigDecimal threshold) {
this.threshold = threshold;
}
public Integer getRecognitionResult() {
return this.recognitionResult;
}
public void setRecognitionResult(Integer recognitionResult) {
this.recognitionResult = recognitionResult;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getFaceId() {
return this.faceId;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public BigDecimal getQualityScore() {
return this.qualityScore;
}
public void setQualityScore(BigDecimal qualityScore) {
this.qualityScore = qualityScore;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public BigDecimal getTempScore() {
return this.tempScore;
}
public void setTempScore(BigDecimal tempScore) {
this.tempScore = tempScore;
}
public BigDecimal getMaskScore() {
return this.maskScore;
}
public void setMaskScore(BigDecimal maskScore) {
this.maskScore = maskScore;
}
public BigDecimal getTempThreshold() {
return this.tempThreshold;
}
public void setTempThreshold(BigDecimal tempThreshold) {
this.tempThreshold = tempThreshold;
}
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public Long getDispatchElevatorTime() {
return this.dispatchElevatorTime;
}
public void setDispatchElevatorTime(Long dispatchElevatorTime) {
this.dispatchElevatorTime = dispatchElevatorTime;
}
public String toString() {
return "AcsElevatorRecordDetailQueryResultDTO{openDoorId='" + this.openDoorId + '\'' + ", panoramaImageRecog='" + this.panoramaImageRecog + '\'' + ", panoramaImageOpen='" + this.panoramaImageOpen + '\'' + ", faceImage='" + this.faceImage + '\'' + ", registerImage='" + this.registerImage + '\'' + ", personName='" + this.personName + '\'' + ", recognitionTime=" + this.recognitionTime + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", deviceName='" + this.deviceName + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", score=" + this.score + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", regRecordId='" + this.regRecordId + '\'' + ", threshold=" + this.threshold + ", recognitionResult=" + this.recognitionResult + ", groupId='" + this.groupId + '\'' + ", faceId='" + this.faceId + '\'' + ", qualityScore=" + this.qualityScore + ", logId='" + this.logId + '\'' + ", tempScore=" + this.tempScore + ", maskScore=" + this.maskScore + ", tempThreshold=" + this.tempThreshold + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,48 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
public class AcsElevatorRecordExtraDTO {
private String srcFloor;
private String destFloor;
private String dispatchElevatorNo;
private Long dispatchElevatorTime;
public String getSrcFloor() {
return this.srcFloor;
}
public void setSrcFloor(String srcFloor) {
this.srcFloor = srcFloor;
}
public String getDestFloor() {
return this.destFloor;
}
public void setDestFloor(String destFloor) {
this.destFloor = destFloor;
}
public String getDispatchElevatorNo() {
return this.dispatchElevatorNo;
}
public void setDispatchElevatorNo(String dispatchElevatorNo) {
this.dispatchElevatorNo = dispatchElevatorNo;
}
public Long getDispatchElevatorTime() {
return this.dispatchElevatorTime;
}
public void setDispatchElevatorTime(Long dispatchElevatorTime) {
this.dispatchElevatorTime = dispatchElevatorTime;
}
public String toString() {
return "AcsElevatorRecordExtraDTO{srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,210 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
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;
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 String toString() {
return "AcsElevatorRecordQueryResultDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsEvacuateRecordAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 6218608493087626777L;
private String businessId;
private String groupId;
private String groupName;
private String userName;
private String deviceName;
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String toString() {
return "AcsEvacuateRecordAddDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", groupName='" + this.groupName + '\'' + ", userName='" + this.userName + '\'' + '}';
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsEvacuateRecordEditDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 714202413521293769L;
private String businessId;
private String groupId;
private Long recoveryTime;
private String duration;
private String userName;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public Long getRecoveryTime() {
return this.recoveryTime;
}
public void setRecoveryTime(Long recoveryTime) {
this.recoveryTime = recoveryTime;
}
public String getDuration() {
return this.duration;
}
public void setDuration(String duration) {
this.duration = duration;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String toString() {
return "AcsEvacuateRecordEditDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", recoveryTime=" + this.recoveryTime + ", duration='" + this.duration + '\'' + ", userName='" + this.userName + '\'' + '}';
}
}
@@ -0,0 +1,89 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import java.io.Serializable;
import java.util.List;
public class AcsEvacuateRecordQueryDTO
implements Serializable {
private static final long serialVersionUID = 8520312174639117682L;
private String businessId;
private String groupId;
private String groupName;
private Long switchOnTimeBegin;
private Long switchOnTimeEnd;
private Long switchOffTimeBegin;
private Long switchOffTimeEnd;
private List<String> groupIds;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Long getSwitchOnTimeBegin() {
return this.switchOnTimeBegin;
}
public void setSwitchOnTimeBegin(Long switchOnTimeBegin) {
this.switchOnTimeBegin = switchOnTimeBegin;
}
public Long getSwitchOnTimeEnd() {
return this.switchOnTimeEnd;
}
public void setSwitchOnTimeEnd(Long switchOnTimeEnd) {
this.switchOnTimeEnd = switchOnTimeEnd;
}
public Long getSwitchOffTimeBegin() {
return this.switchOffTimeBegin;
}
public void setSwitchOffTimeBegin(Long switchOffTimeBegin) {
this.switchOffTimeBegin = switchOffTimeBegin;
}
public Long getSwitchOffTimeEnd() {
return this.switchOffTimeEnd;
}
public void setSwitchOffTimeEnd(Long switchOffTimeEnd) {
this.switchOffTimeEnd = switchOffTimeEnd;
}
public List<String> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<String> groupIds) {
this.groupIds = groupIds;
}
public String toString() {
return "AcsEvacuateRecordQueryDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", groupName='" + this.groupName + '\'' + ", switchOnTimeBegin=" + this.switchOnTimeBegin + ", switchOnTimeEnd=" + this.switchOnTimeEnd + ", switchOffTimeBegin=" + this.switchOffTimeBegin + ", switchOffTimeEnd=" + this.switchOffTimeEnd + ", groupIds=" + this.groupIds + '}';
}
}
@@ -0,0 +1,84 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsEvacuateRecordResultDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 338213519161196736L;
private String businessId;
private String groupId;
private String groupName;
private Long recoveryTime;
private String duration;
private String userName;
private String deviceName;
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Long getRecoveryTime() {
return this.recoveryTime;
}
public void setRecoveryTime(Long recoveryTime) {
this.recoveryTime = recoveryTime;
}
public String getDuration() {
return this.duration;
}
public void setDuration(String duration) {
this.duration = duration;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String toString() {
return "AcsEvacuateRecordResultDTO{businessId='" + this.businessId + '\'' + ", groupId='" + this.groupId + '\'' + ", groupName='" + this.groupName + '\'' + ", recoveryTime=" + this.recoveryTime + ", duration='" + this.duration + '\'' + ", userName='" + this.userName + '\'' + '}';
}
}
@@ -0,0 +1,174 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsOpenDoorRecordAddDTO
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 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 toString() {
return "AcsOpenDoorRecordAddDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + '}';
}
}
@@ -0,0 +1,147 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsOpenDoorRecordEditDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 885170301572808321L;
private String businessId;
private String deviceId;
private String deviceCode;
private String openDoorType;
private String operateName;
private String faceImagePath;
private String panoramaImagePath;
private Integer recordResult;
private String recognitionNo;
private Long recognitionTime;
private String logId;
private String recognitionFaceId;
private Long startDay;
private Long endDay;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getOpenDoorType() {
return this.openDoorType;
}
public void setOpenDoorType(String openDoorType) {
this.openDoorType = openDoorType;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public String getFaceImagePath() {
return this.faceImagePath;
}
public void setFaceImagePath(String faceImagePath) {
this.faceImagePath = faceImagePath;
}
public String getPanoramaImagePath() {
return this.panoramaImagePath;
}
public void setPanoramaImagePath(String panoramaImagePath) {
this.panoramaImagePath = panoramaImagePath;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getRecognitionNo() {
return this.recognitionNo;
}
public void setRecognitionNo(String recognitionNo) {
this.recognitionNo = recognitionNo;
}
public Long getRecognitionTime() {
return this.recognitionTime;
}
public void setRecognitionTime(Long recognitionTime) {
this.recognitionTime = recognitionTime;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public String getRecognitionFaceId() {
return this.recognitionFaceId;
}
public void setRecognitionFaceId(String recognitionFaceId) {
this.recognitionFaceId = recognitionFaceId;
}
public Long getStartDay() {
return this.startDay;
}
public void setStartDay(Long startDay) {
this.startDay = startDay;
}
public Long getEndDay() {
return this.endDay;
}
public void setEndDay(Long endDay) {
this.endDay = endDay;
}
public String toString() {
return "AcsOpenDoorRecordEditDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", startDay=" + this.startDay + ", endDay=" + this.endDay + '}';
}
}
@@ -0,0 +1,66 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import java.io.Serializable;
public class AcsOpenDoorRecordQueryDTO
implements Serializable {
private static final long serialVersionUID = 2759536962618796129L;
private String id;
private String businessId;
private Long startDay;
private Long endDay;
private Integer recordResult;
private String logId;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Long getStartDay() {
return this.startDay;
}
public void setStartDay(Long startDay) {
this.startDay = startDay;
}
public Long getEndDay() {
return this.endDay;
}
public void setEndDay(Long endDay) {
this.endDay = endDay;
}
public Integer getRecordResult() {
return this.recordResult;
}
public void setRecordResult(Integer recordResult) {
this.recordResult = recordResult;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
}
@@ -0,0 +1,170 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsOpenDoorRecordQueryResultDTO
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;
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;
}
}
@@ -0,0 +1,30 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import java.io.Serializable;
public class AcsOpenDoorRecordStatisticsResultDTO
implements Serializable {
private static final long serialVersionUID = -7242981516248778100L;
private String businessId;
private Long openDoorCount;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public Long getOpenDoorCount() {
return this.openDoorCount;
}
public void setOpenDoorCount(Long openDoorCount) {
this.openDoorCount = openDoorCount;
}
}
@@ -0,0 +1,80 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsOperateRecordAddDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = -7033876700068047889L;
private String businessId;
private String deviceId;
private String deviceCode;
private String operateTypeCode;
private String operateName;
private Long operateTime;
private Integer status;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getOperateTypeCode() {
return this.operateTypeCode;
}
public void setOperateTypeCode(String operateTypeCode) {
this.operateTypeCode = operateTypeCode;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public Long getOperateTime() {
return this.operateTime;
}
public void setOperateTime(Long operateTime) {
this.operateTime = operateTime;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
}
@@ -0,0 +1,53 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
import java.io.Serializable;
public class AcsOperateRecordEditDTO
extends CloudwalkBaseTimes
implements Serializable {
private static final long serialVersionUID = 1150085675054623497L;
private String businessId;
private String deviceId;
private String operateTypeCode;
private Integer status;
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getOperateTypeCode() {
return this.operateTypeCode;
}
public void setOperateTypeCode(String operateTypeCode) {
this.operateTypeCode = operateTypeCode;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
}
@@ -0,0 +1,85 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import java.io.Serializable;
import java.util.List;
public class AcsOperateRecordPageDTO
implements Serializable {
private static final long serialVersionUID = -3755204177673375034L;
private String businessId;
private String deviceName;
private String deviceCode;
private String operateName;
private Integer status;
private List<String> deviceIds;
private Long startTime;
private Long endTime;
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 List<String> getDeviceIds() {
return this.deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
}
@@ -0,0 +1,67 @@
/*
* Decompiled with CFR 0.152.
*/
package cn.cloudwalk.common.ninca.accesscontrol.bean.record;
import java.io.Serializable;
import java.util.List;
public class AcsOperateRecordQueryDTO
implements Serializable {
private static final long serialVersionUID = -2384377503019933888L;
private String businessId;
private String deviceId;
private String operateTypeCode;
private List<String> operateTypeCodes;
private Integer status;
private Long delayTime;
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 getOperateTypeCode() {
return this.operateTypeCode;
}
public void setOperateTypeCode(String operateTypeCode) {
this.operateTypeCode = operateTypeCode;
}
public List<String> getOperateTypeCodes() {
return this.operateTypeCodes;
}
public void setOperateTypeCodes(List<String> operateTypeCodes) {
this.operateTypeCodes = operateTypeCodes;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getDelayTime() {
return this.delayTime;
}
public void setDelayTime(Long delayTime) {
this.delayTime = delayTime;
}
}

Some files were not shown because too many files have changed in this diff Show More