mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
feat: add service config templates and extraction script
Former-commit-id: 1de24b7eb79676d1aba9d799a58c5a753290cf52
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?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-visitor-management-interface</artifactId>
|
||||
<name>ninca-crk-visitor-management-interface</name>
|
||||
<description>CFR from ninca-crk-visitor-management-interface-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>cn.cloudwalk.ninca</groupId>
|
||||
<artifactId>ninca-crk-portal-resource-stubs</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.anonymous.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.AnonymousAddSignParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.AnonymousAddSignResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AnonymousVerifyService {
|
||||
public CloudwalkResult<AnonymousAddSignResult> sign(CloudwalkCallContext var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<String> verify(AnonymousAddSignParam var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.batch.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public interface ImportData
|
||||
extends Serializable {
|
||||
}
|
||||
|
||||
+87
@@ -0,0 +1,87 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.batch.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.batch.param.ImportData;
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.param.ImportRecordParam;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class BatchImportResult<T extends ImportData>
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6022537653067838728L;
|
||||
private boolean success;
|
||||
private String fileName;
|
||||
private Integer execNum;
|
||||
private Integer execTotal;
|
||||
private String remark;
|
||||
List<T> importDatas;
|
||||
List<ImportRecordParam> importRecords;
|
||||
private String createUserName;
|
||||
|
||||
public boolean isSuccess() {
|
||||
return this.success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public Integer getExecNum() {
|
||||
return this.execNum;
|
||||
}
|
||||
|
||||
public void setExecNum(Integer execNum) {
|
||||
this.execNum = execNum;
|
||||
}
|
||||
|
||||
public Integer getExecTotal() {
|
||||
return this.execTotal;
|
||||
}
|
||||
|
||||
public void setExecTotal(Integer execTotal) {
|
||||
this.execTotal = execTotal;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public List<T> getImportDatas() {
|
||||
return this.importDatas;
|
||||
}
|
||||
|
||||
public void setImportDatas(List<T> importDatas) {
|
||||
this.importDatas = importDatas;
|
||||
}
|
||||
|
||||
public List<ImportRecordParam> getImportRecords() {
|
||||
return this.importRecords;
|
||||
}
|
||||
|
||||
public void setImportRecords(List<ImportRecordParam> importRecords) {
|
||||
this.importRecords = importRecords;
|
||||
}
|
||||
|
||||
public String getCreateUserName() {
|
||||
return this.createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
}
|
||||
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.common;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface VisitorApplicationService {
|
||||
public String getApplicationId(String var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class VisitorConfigEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -292294219256124652L;
|
||||
private String id;
|
||||
@NotBlank(message="762508020")
|
||||
private String configKey;
|
||||
@NotBlank(message="762508021")
|
||||
private String configValue;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getConfigKey() {
|
||||
return this.configKey;
|
||||
}
|
||||
|
||||
public void setConfigKey(String configKey) {
|
||||
this.configKey = configKey;
|
||||
}
|
||||
|
||||
public String getConfigValue() {
|
||||
return this.configValue;
|
||||
}
|
||||
|
||||
public void setConfigValue(String configValue) {
|
||||
this.configValue = configValue;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorConfigQueryParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6797803495137255478L;
|
||||
private String id;
|
||||
private String configKey;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getConfigKey() {
|
||||
return this.configKey;
|
||||
}
|
||||
|
||||
public void setConfigKey(String configKey) {
|
||||
this.configKey = configKey;
|
||||
}
|
||||
}
|
||||
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorConfigQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1600044522644913228L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String configKey;
|
||||
private String configValue;
|
||||
|
||||
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 getConfigKey() {
|
||||
return this.configKey;
|
||||
}
|
||||
|
||||
public void setConfigKey(String configKey) {
|
||||
this.configKey = configKey;
|
||||
}
|
||||
|
||||
public String getConfigValue() {
|
||||
return this.configValue;
|
||||
}
|
||||
|
||||
public void setConfigValue(String configValue) {
|
||||
this.configValue = configValue;
|
||||
}
|
||||
}
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.config.param.VisitorConfigEditParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.config.param.VisitorConfigQueryParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.config.result.VisitorConfigQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface VisitorConfigService {
|
||||
public CloudwalkResult<Boolean> edit(VisitorConfigEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<VisitorConfigQueryResult>> query(VisitorConfigQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.corp;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.corp.result.CorpResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface CorpService {
|
||||
public CloudwalkResult<CorpResult> get(CloudwalkCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.corp.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class CorpResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4067689722166764727L;
|
||||
private String corpCode;
|
||||
private String corpName;
|
||||
|
||||
public String getCorpCode() {
|
||||
return this.corpCode;
|
||||
}
|
||||
|
||||
public void setCorpCode(String corpCode) {
|
||||
this.corpCode = corpCode;
|
||||
}
|
||||
|
||||
public String getCorpName() {
|
||||
return this.corpName;
|
||||
}
|
||||
|
||||
public void setCorpName(String corpName) {
|
||||
this.corpName = corpName;
|
||||
}
|
||||
}
|
||||
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceDefaultEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8241217398166081548L;
|
||||
private List<String> deviceIds;
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceDefaultGetsParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -9190981023290122423L;
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceImageStoreAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -3590784909059262420L;
|
||||
private String deviceId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceImageStoreGetParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -3590784909059262420L;
|
||||
private String deviceId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.page.CloudwalkBasePageForm
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorDeviceNewPageParam
|
||||
extends CloudwalkBasePageForm
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5688215744877695100L;
|
||||
private String areaId;
|
||||
private String deviceName;
|
||||
private String districtId;
|
||||
private List<String> districtIds;
|
||||
|
||||
public static long getSerialVersionUID() {
|
||||
return 5688215744877695100L;
|
||||
}
|
||||
|
||||
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 String getDistrictId() {
|
||||
return this.districtId;
|
||||
}
|
||||
|
||||
public void setDistrictId(String districtId) {
|
||||
this.districtId = districtId;
|
||||
}
|
||||
|
||||
public List<String> getDistrictIds() {
|
||||
return this.districtIds;
|
||||
}
|
||||
|
||||
public void setDistrictIds(List<String> districtIds) {
|
||||
this.districtIds = districtIds;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceDefaultResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4067689722166764777L;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
+315
@@ -0,0 +1,315 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.result;
|
||||
|
||||
public class VisitorDeviceResult {
|
||||
private static final long serialVersionUID = -5356689053916559467L;
|
||||
private String id;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private String deviceCode;
|
||||
private String deviceTypeId;
|
||||
private String deviceTypeCode;
|
||||
private String deviceTypeIdTree;
|
||||
private String deviceTypeName;
|
||||
private String deviceName;
|
||||
private String status;
|
||||
private String onlineStatus;
|
||||
private Long lastHeartbeatTime;
|
||||
private String longitude;
|
||||
private String latitude;
|
||||
private String cameraUserName;
|
||||
private String cameraPassword;
|
||||
private String cameraMainRtspUrl;
|
||||
private String cameraIp;
|
||||
private String cameraVmsRtspUrl;
|
||||
private String protocol;
|
||||
private String districtId;
|
||||
private String districtName;
|
||||
private String districtPath;
|
||||
private String districtMergeName;
|
||||
private String areaId;
|
||||
private String areaName;
|
||||
private String areaAddr;
|
||||
private int identifyType;
|
||||
private int isAutoSync;
|
||||
private String snapshotProtocol;
|
||||
private String remark;
|
||||
private String deviceNetworkIp;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeCode() {
|
||||
return this.deviceTypeCode;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
this.deviceTypeCode = deviceTypeCode;
|
||||
}
|
||||
|
||||
public String getDeviceTypeIdTree() {
|
||||
return this.deviceTypeIdTree;
|
||||
}
|
||||
|
||||
public void setDeviceTypeIdTree(String deviceTypeIdTree) {
|
||||
this.deviceTypeIdTree = deviceTypeIdTree;
|
||||
}
|
||||
|
||||
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 getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getOnlineStatus() {
|
||||
return this.onlineStatus;
|
||||
}
|
||||
|
||||
public void setOnlineStatus(String onlineStatus) {
|
||||
this.onlineStatus = onlineStatus;
|
||||
}
|
||||
|
||||
public Long getLastHeartbeatTime() {
|
||||
return this.lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public void setLastHeartbeatTime(Long lastHeartbeatTime) {
|
||||
this.lastHeartbeatTime = lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return this.longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return this.latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getCameraUserName() {
|
||||
return this.cameraUserName;
|
||||
}
|
||||
|
||||
public void setCameraUserName(String cameraUserName) {
|
||||
this.cameraUserName = cameraUserName;
|
||||
}
|
||||
|
||||
public String getCameraPassword() {
|
||||
return this.cameraPassword;
|
||||
}
|
||||
|
||||
public void setCameraPassword(String cameraPassword) {
|
||||
this.cameraPassword = cameraPassword;
|
||||
}
|
||||
|
||||
public String getCameraMainRtspUrl() {
|
||||
return this.cameraMainRtspUrl;
|
||||
}
|
||||
|
||||
public void setCameraMainRtspUrl(String cameraMainRtspUrl) {
|
||||
this.cameraMainRtspUrl = cameraMainRtspUrl;
|
||||
}
|
||||
|
||||
public String getCameraVmsRtspUrl() {
|
||||
return this.cameraVmsRtspUrl;
|
||||
}
|
||||
|
||||
public void setCameraVmsRtspUrl(String cameraVmsRtspUrl) {
|
||||
this.cameraVmsRtspUrl = cameraVmsRtspUrl;
|
||||
}
|
||||
|
||||
public String getProtocol() {
|
||||
return this.protocol;
|
||||
}
|
||||
|
||||
public void setProtocol(String protocol) {
|
||||
this.protocol = protocol;
|
||||
}
|
||||
|
||||
public String getDistrictId() {
|
||||
return this.districtId;
|
||||
}
|
||||
|
||||
public void setDistrictId(String districtId) {
|
||||
this.districtId = districtId;
|
||||
}
|
||||
|
||||
public String getDistrictName() {
|
||||
return this.districtName;
|
||||
}
|
||||
|
||||
public void setDistrictName(String districtName) {
|
||||
this.districtName = districtName;
|
||||
}
|
||||
|
||||
public String getDistrictPath() {
|
||||
return this.districtPath;
|
||||
}
|
||||
|
||||
public void setDistrictPath(String districtPath) {
|
||||
this.districtPath = districtPath;
|
||||
}
|
||||
|
||||
public String getDistrictMergeName() {
|
||||
return this.districtMergeName;
|
||||
}
|
||||
|
||||
public void setDistrictMergeName(String districtMergeName) {
|
||||
this.districtMergeName = districtMergeName;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public String getAreaAddr() {
|
||||
return this.areaAddr;
|
||||
}
|
||||
|
||||
public void setAreaAddr(String areaAddr) {
|
||||
this.areaAddr = areaAddr;
|
||||
}
|
||||
|
||||
public int getIdentifyType() {
|
||||
return this.identifyType;
|
||||
}
|
||||
|
||||
public void setIdentifyType(int identifyType) {
|
||||
this.identifyType = identifyType;
|
||||
}
|
||||
|
||||
public int getIsAutoSync() {
|
||||
return this.isAutoSync;
|
||||
}
|
||||
|
||||
public void setIsAutoSync(int isAutoSync) {
|
||||
this.isAutoSync = isAutoSync;
|
||||
}
|
||||
|
||||
public String getSnapshotProtocol() {
|
||||
return this.snapshotProtocol;
|
||||
}
|
||||
|
||||
public void setSnapshotProtocol(String snapshotProtocol) {
|
||||
this.snapshotProtocol = snapshotProtocol;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getDeviceNetworkIp() {
|
||||
return this.deviceNetworkIp;
|
||||
}
|
||||
|
||||
public void setDeviceNetworkIp(String deviceNetworkIp) {
|
||||
this.deviceNetworkIp = deviceNetworkIp;
|
||||
}
|
||||
|
||||
public String getCameraIp() {
|
||||
return this.cameraIp;
|
||||
}
|
||||
|
||||
public void setCameraIp(String cameraIp) {
|
||||
this.cameraIp = cameraIp;
|
||||
}
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
* cn.cloudwalk.common.ninca.visitor.device.DeviceContext
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import cn.cloudwalk.common.ninca.visitor.device.DeviceContext;
|
||||
|
||||
public interface DeviceContextService {
|
||||
public CloudwalkResult<DeviceContext> get(CloudwalkCallContext var1, String var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.device.param.DeviceDefaultEditParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.device.param.DeviceDefaultGetsParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.device.param.VisitorDeviceNewPageParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.device.result.DeviceDefaultResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.device.result.VisitorDeviceResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceDefaultService {
|
||||
public CloudwalkResult<Boolean> edit(DeviceDefaultEditParam var1, CloudwalkCallContext var2) throws ServiceException, DataAccessException;
|
||||
|
||||
public CloudwalkResult<List<DeviceDefaultResult>> gets(DeviceDefaultGetsParam var1, CloudwalkCallContext var2) throws ServiceException, DataAccessException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<VisitorDeviceResult>> page(VisitorDeviceNewPageParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.device.param.DeviceImageStoreGetParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface VisitorDeviceImageStoreService {
|
||||
public CloudwalkResult<String> getDeviceImageStore(DeviceImageStoreGetParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.device.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorDeviceAddParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorDeviceDelParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorDeviceEditParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface VisitorDeviceService {
|
||||
public CloudwalkResult<Boolean> add(VisitorDeviceAddParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> edit(VisitorDeviceEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> delete(VisitorDeviceDelParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.downloadcenter;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.downloadcenter.param.VisitorFileFinishParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
|
||||
public interface VisitorDownloadCenterService {
|
||||
public String createDownload(String var1, CloudwalkCallContext var2);
|
||||
|
||||
public boolean finishDownload(VisitorFileFinishParam var1, CloudwalkCallContext var2);
|
||||
|
||||
public int queryDownloadStatus(String var1, CloudwalkCallContext var2);
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.downloadcenter.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorFileFinishParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 778866860064374964L;
|
||||
private String fileId;
|
||||
private Long fileSize;
|
||||
private String filePath;
|
||||
private Integer fileStatus;
|
||||
private String errorCode;
|
||||
private String errorMessage;
|
||||
|
||||
public Integer getFileStatus() {
|
||||
return this.fileStatus;
|
||||
}
|
||||
|
||||
public void setFileStatus(Integer fileStatus) {
|
||||
this.fileStatus = fileStatus;
|
||||
}
|
||||
|
||||
public String getErrorCode() {
|
||||
return this.errorCode;
|
||||
}
|
||||
|
||||
public void setErrorCode(String errorCode) {
|
||||
this.errorCode = errorCode;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public String getFileId() {
|
||||
return this.fileId;
|
||||
}
|
||||
|
||||
public void setFileId(String fileId) {
|
||||
this.fileId = fileId;
|
||||
}
|
||||
|
||||
public Long getFileSize() {
|
||||
return this.fileSize;
|
||||
}
|
||||
|
||||
public void setFileSize(Long fileSize) {
|
||||
this.fileSize = fileSize;
|
||||
}
|
||||
|
||||
public String getFilePath() {
|
||||
return this.filePath;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImportExportQueryParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5929591255227464652L;
|
||||
private String id;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.param;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.param.ImportRecordParam;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImportNewParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3151530329620243299L;
|
||||
private String fileName;
|
||||
private Integer execNum;
|
||||
private Integer execTotal;
|
||||
private String remark;
|
||||
List<ImportRecordParam> importRecords;
|
||||
private String createUserName;
|
||||
|
||||
public String getCreateUserName() {
|
||||
return this.createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
public List<ImportRecordParam> getImportRecords() {
|
||||
return this.importRecords;
|
||||
}
|
||||
|
||||
public void setImportRecords(List<ImportRecordParam> importRecords) {
|
||||
this.importRecords = importRecords;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public Integer getExecNum() {
|
||||
return this.execNum;
|
||||
}
|
||||
|
||||
public void setExecNum(Integer execNum) {
|
||||
this.execNum = execNum;
|
||||
}
|
||||
|
||||
public Integer getExecTotal() {
|
||||
return this.execTotal;
|
||||
}
|
||||
|
||||
public void setExecTotal(Integer execTotal) {
|
||||
this.execTotal = execTotal;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImportQueryParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5238817599972908981L;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
private String createUserName;
|
||||
|
||||
public String getCreateUserName() {
|
||||
return this.createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImportRecordParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8171687138474383519L;
|
||||
private String info;
|
||||
private String keyWord;
|
||||
private Integer lineNum;
|
||||
|
||||
public String getInfo() {
|
||||
return this.info;
|
||||
}
|
||||
|
||||
public void setInfo(String info) {
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
public String getKeyWord() {
|
||||
return this.keyWord;
|
||||
}
|
||||
|
||||
public void setKeyWord(String keyWord) {
|
||||
this.keyWord = keyWord;
|
||||
}
|
||||
|
||||
public Integer getLineNum() {
|
||||
return this.lineNum;
|
||||
}
|
||||
|
||||
public void setLineNum(Integer lineNum) {
|
||||
this.lineNum = lineNum;
|
||||
}
|
||||
}
|
||||
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImportRecordExcelResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7094918081786330630L;
|
||||
@ExcelAttribute(name="\u884c\u6570", column="A")
|
||||
private Integer lineNum;
|
||||
@ExcelAttribute(name="\u59d3\u540d", column="B")
|
||||
private String keyWord;
|
||||
@ExcelAttribute(name="\u5931\u8d25\u539f\u56e0", column="C")
|
||||
private String info;
|
||||
|
||||
public String getInfo() {
|
||||
return this.info;
|
||||
}
|
||||
|
||||
public void setInfo(String info) {
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
public String getKeyWord() {
|
||||
return this.keyWord;
|
||||
}
|
||||
|
||||
public void setKeyWord(String keyWord) {
|
||||
this.keyWord = keyWord;
|
||||
}
|
||||
|
||||
public Integer getLineNum() {
|
||||
return this.lineNum;
|
||||
}
|
||||
|
||||
public void setLineNum(Integer lineNum) {
|
||||
this.lineNum = lineNum;
|
||||
}
|
||||
}
|
||||
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImportResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6276305624643227286L;
|
||||
private String id;
|
||||
private String fileName;
|
||||
private Integer execNum;
|
||||
private Integer execTotal;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Integer moduleId;
|
||||
private String createUserName;
|
||||
|
||||
public String getCreateUserName() {
|
||||
return this.createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
public Integer getModuleId() {
|
||||
return this.moduleId;
|
||||
}
|
||||
|
||||
public void setModuleId(Integer moduleId) {
|
||||
this.moduleId = moduleId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public Integer getExecNum() {
|
||||
return this.execNum;
|
||||
}
|
||||
|
||||
public void setExecNum(Integer execNum) {
|
||||
this.execNum = execNum;
|
||||
}
|
||||
|
||||
public Integer getExecTotal() {
|
||||
return this.execTotal;
|
||||
}
|
||||
|
||||
public void setExecTotal(Integer execTotal) {
|
||||
this.execTotal = execTotal;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.importrecord.serivce;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.param.ImportExportQueryParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.param.ImportNewParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.param.ImportQueryParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.result.ImportRecordExcelResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.importrecord.result.ImportResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImportRecordService {
|
||||
public CloudwalkResult<Boolean> add(ImportNewParam var1, CloudwalkCallContext var2) throws ServiceException, DataAccessException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<ImportResult>> page(ImportQueryParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public List<ImportRecordExcelResult> export(ImportExportQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.label;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface VisitorLabelService {
|
||||
public CloudwalkResult<String> getLabelId(CloudwalkCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.message.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class GetShortUrlParam
|
||||
implements Serializable {
|
||||
private String url;
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.message.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Parameter
|
||||
implements Serializable {
|
||||
private String key;
|
||||
private String value;
|
||||
|
||||
public String getKey() {
|
||||
return this.key;
|
||||
}
|
||||
|
||||
public void setKey(String key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.message.param;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.message.param.Parameter;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class SmsSendParam
|
||||
implements Serializable {
|
||||
private String telephone;
|
||||
private String templateId;
|
||||
private String serviceCode;
|
||||
private List<Parameter> parameter;
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getTemplateId() {
|
||||
return this.templateId;
|
||||
}
|
||||
|
||||
public void setTemplateId(String templateId) {
|
||||
this.templateId = templateId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public List<Parameter> getParameter() {
|
||||
return this.parameter;
|
||||
}
|
||||
|
||||
public void setParameter(List<Parameter> parameter) {
|
||||
this.parameter = parameter;
|
||||
}
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.message.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ShotUrlResult
|
||||
implements Serializable {
|
||||
private String shortUrl;
|
||||
|
||||
public String getShortUrl() {
|
||||
return this.shortUrl;
|
||||
}
|
||||
|
||||
public void setShortUrl(String shortUrl) {
|
||||
this.shortUrl = shortUrl;
|
||||
}
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.message.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.message.param.GetShortUrlParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.message.param.SmsSendParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.message.result.ShotUrlResult;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface SmsService {
|
||||
public CloudwalkResult<Boolean> send(SmsSendParam var1);
|
||||
|
||||
public CloudwalkResult<ShotUrlResult> getShortUrl(GetShortUrlParam var1);
|
||||
}
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.photo.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class PhotoAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4368372155322708505L;
|
||||
@NotBlank(message="762508024")
|
||||
private String img;
|
||||
private boolean resize = true;
|
||||
@NotBlank(message="762508030")
|
||||
private String fileName;
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getImg() {
|
||||
return this.img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public boolean isResize() {
|
||||
return this.resize;
|
||||
}
|
||||
|
||||
public void setResize(boolean resize) {
|
||||
this.resize = resize;
|
||||
}
|
||||
}
|
||||
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.photo.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class PhotoDelParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7647818169793572239L;
|
||||
@NotEmpty(message="762508039")
|
||||
private List<String> filePaths;
|
||||
|
||||
public List<String> getFilePaths() {
|
||||
return this.filePaths;
|
||||
}
|
||||
|
||||
public void setFilePaths(List<String> filePaths) {
|
||||
this.filePaths = filePaths;
|
||||
}
|
||||
}
|
||||
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.photo.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.photo.param.PhotoAddParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.photo.param.PhotoDelParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface PhotoService {
|
||||
public CloudwalkResult<String> add(PhotoAddParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<String>> delete(PhotoDelParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+292
@@ -0,0 +1,292 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class VisitorRecordNewParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5039493852090103905L;
|
||||
private String logId;
|
||||
private String visitorId;
|
||||
private String visitorName;
|
||||
private String businessId;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
private Long signTime;
|
||||
private String signAddress;
|
||||
private String deviceTypeId;
|
||||
private String deviceTypeName;
|
||||
private String facePath;
|
||||
private String spotImgPath;
|
||||
private String panoramaPath;
|
||||
private BigDecimal score;
|
||||
private Integer status;
|
||||
private BigDecimal threshold;
|
||||
private Integer tumoverType;
|
||||
private String remark;
|
||||
private String receiverId;
|
||||
private String receiverName;
|
||||
private String deviceAreaId;
|
||||
private String deviceAreaName;
|
||||
private String deviceDistrictId;
|
||||
private String deviceDistrictName;
|
||||
private String deviceDistrictPath;
|
||||
private String deviceDistrictMergeName;
|
||||
private String openDoorType;
|
||||
private String srcFloor;
|
||||
private String destFloor;
|
||||
private String dispatchElevatorNo;
|
||||
|
||||
public String getOpenDoorType() {
|
||||
return this.openDoorType;
|
||||
}
|
||||
|
||||
public void setOpenDoorType(String openDoorType) {
|
||||
this.openDoorType = openDoorType;
|
||||
}
|
||||
|
||||
public String getSrcFloor() {
|
||||
return this.srcFloor;
|
||||
}
|
||||
|
||||
public void setSrcFloor(String srcFloor) {
|
||||
this.srcFloor = srcFloor;
|
||||
}
|
||||
|
||||
public String getDestFloor() {
|
||||
return this.destFloor;
|
||||
}
|
||||
|
||||
public void setDestFloor(String destFloor) {
|
||||
this.destFloor = destFloor;
|
||||
}
|
||||
|
||||
public String getDispatchElevatorNo() {
|
||||
return this.dispatchElevatorNo;
|
||||
}
|
||||
|
||||
public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
}
|
||||
|
||||
public String getLogId() {
|
||||
return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictId() {
|
||||
return this.deviceDistrictId;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictId(String deviceDistrictId) {
|
||||
this.deviceDistrictId = deviceDistrictId;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictName() {
|
||||
return this.deviceDistrictName;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictName(String deviceDistrictName) {
|
||||
this.deviceDistrictName = deviceDistrictName;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictPath() {
|
||||
return this.deviceDistrictPath;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictPath(String deviceDistrictPath) {
|
||||
this.deviceDistrictPath = deviceDistrictPath;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictMergeName() {
|
||||
return this.deviceDistrictMergeName;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictMergeName(String deviceDistrictMergeName) {
|
||||
this.deviceDistrictMergeName = deviceDistrictMergeName;
|
||||
}
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
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 Long getSignTime() {
|
||||
return this.signTime;
|
||||
}
|
||||
|
||||
public void setSignTime(Long signTime) {
|
||||
this.signTime = signTime;
|
||||
}
|
||||
|
||||
public String getSignAddress() {
|
||||
return this.signAddress;
|
||||
}
|
||||
|
||||
public void setSignAddress(String signAddress) {
|
||||
this.signAddress = signAddress;
|
||||
}
|
||||
|
||||
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 getFacePath() {
|
||||
return this.facePath;
|
||||
}
|
||||
|
||||
public void setFacePath(String facePath) {
|
||||
this.facePath = facePath;
|
||||
}
|
||||
|
||||
public String getSpotImgPath() {
|
||||
return this.spotImgPath;
|
||||
}
|
||||
|
||||
public void setSpotImgPath(String spotImgPath) {
|
||||
this.spotImgPath = spotImgPath;
|
||||
}
|
||||
|
||||
public String getPanoramaPath() {
|
||||
return this.panoramaPath;
|
||||
}
|
||||
|
||||
public void setPanoramaPath(String panoramaPath) {
|
||||
this.panoramaPath = panoramaPath;
|
||||
}
|
||||
|
||||
public BigDecimal getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(BigDecimal score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public BigDecimal getThreshold() {
|
||||
return this.threshold;
|
||||
}
|
||||
|
||||
public void setThreshold(BigDecimal threshold) {
|
||||
this.threshold = threshold;
|
||||
}
|
||||
|
||||
public Integer getTumoverType() {
|
||||
return this.tumoverType;
|
||||
}
|
||||
|
||||
public void setTumoverType(Integer tumoverType) {
|
||||
this.tumoverType = tumoverType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getReceiverId() {
|
||||
return this.receiverId;
|
||||
}
|
||||
|
||||
public void setReceiverId(String receiverId) {
|
||||
this.receiverId = receiverId;
|
||||
}
|
||||
|
||||
public String getReceiverName() {
|
||||
return this.receiverName;
|
||||
}
|
||||
|
||||
public void setReceiverName(String receiverName) {
|
||||
this.receiverName = receiverName;
|
||||
}
|
||||
|
||||
public String getDeviceAreaId() {
|
||||
return this.deviceAreaId;
|
||||
}
|
||||
|
||||
public void setDeviceAreaId(String deviceAreaId) {
|
||||
this.deviceAreaId = deviceAreaId;
|
||||
}
|
||||
|
||||
public String getDeviceAreaName() {
|
||||
return this.deviceAreaName;
|
||||
}
|
||||
|
||||
public void setDeviceAreaName(String deviceAreaName) {
|
||||
this.deviceAreaName = deviceAreaName;
|
||||
}
|
||||
}
|
||||
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorRecordPageParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8947359101183867058L;
|
||||
private String businessId;
|
||||
private String visitorId;
|
||||
private String visitorName;
|
||||
private List<String> deviceIds;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
private String receiverName;
|
||||
private boolean fromOpen = false;
|
||||
|
||||
public boolean isFromOpen() {
|
||||
return this.fromOpen;
|
||||
}
|
||||
|
||||
public void setFromOpen(boolean fromOpen) {
|
||||
this.fromOpen = fromOpen;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
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 getReceiverName() {
|
||||
return this.receiverName;
|
||||
}
|
||||
|
||||
public void setReceiverName(String receiverName) {
|
||||
this.receiverName = receiverName;
|
||||
}
|
||||
}
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import java.io.Serializable;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class VisitorRecordQueryParam
|
||||
extends CloudwalkPageInfo
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5418825126025402170L;
|
||||
@NotBlank(message="762510018")
|
||||
private String visitorId;
|
||||
private String businessId;
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorOverviewResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7671207718927334038L;
|
||||
private Integer all;
|
||||
|
||||
public Integer getAll() {
|
||||
return this.all;
|
||||
}
|
||||
|
||||
public void setAll(Integer all) {
|
||||
this.all = all;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPicObj
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.record.result.VisitorRecordResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorResult;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPicObj;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5547248296251558353L;
|
||||
@DavinciPicObj
|
||||
private VisitorResult visitorInfo;
|
||||
@DavinciPicObj
|
||||
private List<VisitorRecordResult> visitorRecordList;
|
||||
|
||||
public VisitorResult getVisitorInfo() {
|
||||
return this.visitorInfo;
|
||||
}
|
||||
|
||||
public void setVisitorInfo(VisitorResult visitorInfo) {
|
||||
this.visitorInfo = visitorInfo;
|
||||
}
|
||||
|
||||
public List<VisitorRecordResult> getVisitorRecordList() {
|
||||
return this.visitorRecordList;
|
||||
}
|
||||
|
||||
public void setVisitorRecordList(List<VisitorRecordResult> visitorRecordList) {
|
||||
this.visitorRecordList = visitorRecordList;
|
||||
}
|
||||
}
|
||||
|
||||
+308
@@ -0,0 +1,308 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class VisitorRecordResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7671207718927334038L;
|
||||
private String id;
|
||||
private String visitorId;
|
||||
private String visitorName;
|
||||
private String businessId;
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
private Long signTime;
|
||||
private String signAddress;
|
||||
private String deviceTypeId;
|
||||
private String deviceTypeName;
|
||||
@DavinciPic
|
||||
private String facePath;
|
||||
@DavinciPic
|
||||
private String spotImgPath;
|
||||
@DavinciPic
|
||||
private String panoramaPath;
|
||||
private BigDecimal score;
|
||||
private Integer status;
|
||||
private BigDecimal threshold;
|
||||
private Integer tumoverType;
|
||||
private String remark;
|
||||
private String receiverId;
|
||||
private String receiverName;
|
||||
private String deviceAreaId;
|
||||
private String deviceAreaName;
|
||||
private String deviceDistrictId;
|
||||
private String deviceDistrictName;
|
||||
private String deviceDistrictPath;
|
||||
private String deviceDistrictMergeName;
|
||||
private String cause;
|
||||
private String openDoorType;
|
||||
private String srcFloor;
|
||||
private String destFloor;
|
||||
private String dispatchElevatorNo;
|
||||
|
||||
public String getOpenDoorType() {
|
||||
return this.openDoorType;
|
||||
}
|
||||
|
||||
public void setOpenDoorType(String openDoorType) {
|
||||
this.openDoorType = openDoorType;
|
||||
}
|
||||
|
||||
public String getSrcFloor() {
|
||||
return this.srcFloor;
|
||||
}
|
||||
|
||||
public void setSrcFloor(String srcFloor) {
|
||||
this.srcFloor = srcFloor;
|
||||
}
|
||||
|
||||
public String getDestFloor() {
|
||||
return this.destFloor;
|
||||
}
|
||||
|
||||
public void setDestFloor(String destFloor) {
|
||||
this.destFloor = destFloor;
|
||||
}
|
||||
|
||||
public String getDispatchElevatorNo() {
|
||||
return this.dispatchElevatorNo;
|
||||
}
|
||||
|
||||
public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictId() {
|
||||
return this.deviceDistrictId;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictId(String deviceDistrictId) {
|
||||
this.deviceDistrictId = deviceDistrictId;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictName() {
|
||||
return this.deviceDistrictName;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictName(String deviceDistrictName) {
|
||||
this.deviceDistrictName = deviceDistrictName;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictPath() {
|
||||
return this.deviceDistrictPath;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictPath(String deviceDistrictPath) {
|
||||
this.deviceDistrictPath = deviceDistrictPath;
|
||||
}
|
||||
|
||||
public String getDeviceDistrictMergeName() {
|
||||
return this.deviceDistrictMergeName;
|
||||
}
|
||||
|
||||
public void setDeviceDistrictMergeName(String deviceDistrictMergeName) {
|
||||
this.deviceDistrictMergeName = deviceDistrictMergeName;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
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 Long getSignTime() {
|
||||
return this.signTime;
|
||||
}
|
||||
|
||||
public void setSignTime(Long signTime) {
|
||||
this.signTime = signTime;
|
||||
}
|
||||
|
||||
public String getSignAddress() {
|
||||
return this.signAddress;
|
||||
}
|
||||
|
||||
public void setSignAddress(String signAddress) {
|
||||
this.signAddress = signAddress;
|
||||
}
|
||||
|
||||
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 getFacePath() {
|
||||
return this.facePath;
|
||||
}
|
||||
|
||||
public void setFacePath(String facePath) {
|
||||
this.facePath = facePath;
|
||||
}
|
||||
|
||||
public String getSpotImgPath() {
|
||||
return this.spotImgPath;
|
||||
}
|
||||
|
||||
public void setSpotImgPath(String spotImgPath) {
|
||||
this.spotImgPath = spotImgPath;
|
||||
}
|
||||
|
||||
public String getPanoramaPath() {
|
||||
return this.panoramaPath;
|
||||
}
|
||||
|
||||
public void setPanoramaPath(String panoramaPath) {
|
||||
this.panoramaPath = panoramaPath;
|
||||
}
|
||||
|
||||
public BigDecimal getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(BigDecimal score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public BigDecimal getThreshold() {
|
||||
return this.threshold;
|
||||
}
|
||||
|
||||
public void setThreshold(BigDecimal threshold) {
|
||||
this.threshold = threshold;
|
||||
}
|
||||
|
||||
public Integer getTumoverType() {
|
||||
return this.tumoverType;
|
||||
}
|
||||
|
||||
public void setTumoverType(Integer tumoverType) {
|
||||
this.tumoverType = tumoverType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getReceiverId() {
|
||||
return this.receiverId;
|
||||
}
|
||||
|
||||
public void setReceiverId(String receiverId) {
|
||||
this.receiverId = receiverId;
|
||||
}
|
||||
|
||||
public String getReceiverName() {
|
||||
return this.receiverName;
|
||||
}
|
||||
|
||||
public void setReceiverName(String receiverName) {
|
||||
this.receiverName = receiverName;
|
||||
}
|
||||
|
||||
public String getDeviceAreaId() {
|
||||
return this.deviceAreaId;
|
||||
}
|
||||
|
||||
public void setDeviceAreaId(String deviceAreaId) {
|
||||
this.deviceAreaId = deviceAreaId;
|
||||
}
|
||||
|
||||
public String getDeviceAreaName() {
|
||||
return this.deviceAreaName;
|
||||
}
|
||||
|
||||
public void setDeviceAreaName(String deviceAreaName) {
|
||||
this.deviceAreaName = deviceAreaName;
|
||||
}
|
||||
}
|
||||
|
||||
+181
@@ -0,0 +1,181 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cwos.client.event.event.CustomEvent
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.result;
|
||||
|
||||
import cn.cloudwalk.cwos.client.event.event.CustomEvent;
|
||||
|
||||
public class VisitorRecordResultEvent
|
||||
extends CustomEvent {
|
||||
private String deviceCode;
|
||||
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 getTopic() {
|
||||
return "VISITOR_RECORD_TOPIC";
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+98
@@ -0,0 +1,98 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.ExcelBytesAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.ExcelBytesAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorRecordResultExcel
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8341423714599944646L;
|
||||
@ExcelAttribute(name="\u8bbf\u5ba2\u59d3\u540d", column="A")
|
||||
private String visitorName;
|
||||
private String registerImagePath;
|
||||
@ExcelAttribute(name="\u6ce8\u518c\u7167\u7247", column="B", isPic=true)
|
||||
@ExcelBytesAttribute(pathField="registerImagePath")
|
||||
private byte[] registerImagePathBytes;
|
||||
private String spotImgPath;
|
||||
@ExcelAttribute(name="\u6293\u62cd\u7167\u7247", column="C", isPic=true)
|
||||
@ExcelBytesAttribute(pathField="spotImgPath")
|
||||
private byte[] spotImgPathBytes;
|
||||
@ExcelAttribute(name="\u901a\u884c\u65f6\u95f4", column="D", isDate=true)
|
||||
private Long signTime;
|
||||
@ExcelAttribute(name="\u901a\u884c\u5730\u70b9", column="E")
|
||||
private String deviceAreaName;
|
||||
@ExcelAttribute(name="\u901a\u884c\u8bbe\u5907", column="F")
|
||||
private String deviceName;
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
public String getRegisterImagePath() {
|
||||
return this.registerImagePath;
|
||||
}
|
||||
|
||||
public void setRegisterImagePath(String registerImagePath) {
|
||||
this.registerImagePath = registerImagePath;
|
||||
}
|
||||
|
||||
public byte[] getRegisterImagePathBytes() {
|
||||
return this.registerImagePathBytes;
|
||||
}
|
||||
|
||||
public void setRegisterImagePathBytes(byte[] registerImagePathBytes) {
|
||||
this.registerImagePathBytes = registerImagePathBytes;
|
||||
}
|
||||
|
||||
public String getSpotImgPath() {
|
||||
return this.spotImgPath;
|
||||
}
|
||||
|
||||
public void setSpotImgPath(String spotImgPath) {
|
||||
this.spotImgPath = spotImgPath;
|
||||
}
|
||||
|
||||
public byte[] getSpotImgPathBytes() {
|
||||
return this.spotImgPathBytes;
|
||||
}
|
||||
|
||||
public void setSpotImgPathBytes(byte[] spotImgPathBytes) {
|
||||
this.spotImgPathBytes = spotImgPathBytes;
|
||||
}
|
||||
|
||||
public Long getSignTime() {
|
||||
return this.signTime;
|
||||
}
|
||||
|
||||
public void setSignTime(Long signTime) {
|
||||
this.signTime = signTime;
|
||||
}
|
||||
|
||||
public String getDeviceAreaName() {
|
||||
return this.deviceAreaName;
|
||||
}
|
||||
|
||||
public void setDeviceAreaName(String deviceAreaName) {
|
||||
this.deviceAreaName = deviceAreaName;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
}
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cwos.client.event.event.FaceCaptureEvent
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cwos.client.event.event.FaceCaptureEvent;
|
||||
|
||||
public interface ProtocolCaptureService {
|
||||
public void upload(FaceCaptureEvent var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
* cn.cloudwalk.cwos.client.event.event.PersonRecordUploadEvent
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.record.result.VisitorRecordResultEvent;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import cn.cloudwalk.cwos.client.event.event.PersonRecordUploadEvent;
|
||||
|
||||
public interface ProtocolRecordUploadService {
|
||||
public CloudwalkResult<Boolean> upload(PersonRecordUploadEvent var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> uploadVistor(VisitorRecordResultEvent var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.record.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.record.param.VisitorRecordNewParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.record.param.VisitorRecordPageParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.record.param.VisitorRecordQueryParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.record.result.VisitorOverviewResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.record.result.VisitorQueryResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.record.result.VisitorRecordResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface VisitorRecordService {
|
||||
public CloudwalkResult<String> add(VisitorRecordNewParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<VisitorQueryResult> query(VisitorRecordQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<VisitorResult>> queryVisitor(VisitorRecordQueryParam var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<VisitorRecordResult>> page(VisitorRecordPageParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<VisitorOverviewResult> getOverview(VisitorRecordPageParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.Max
|
||||
* javax.validation.constraints.Min
|
||||
* javax.validation.constraints.NotNull
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
public class VisitorAnalyseCycleParam
|
||||
implements Serializable {
|
||||
private String businessId;
|
||||
@NotNull(message="762508025")
|
||||
@Min(value=0L, message="762508026")
|
||||
@Max(value=2L, message="762508026")
|
||||
private Integer timeType;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getTimeType() {
|
||||
return this.timeType;
|
||||
}
|
||||
|
||||
public void setTimeType(Integer timeType) {
|
||||
this.timeType = timeType;
|
||||
}
|
||||
}
|
||||
|
||||
+273
@@ -0,0 +1,273 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.em.VisitorRegisterTypeEnum
|
||||
* javax.validation.constraints.Max
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.em.VisitorRegisterTypeEnum;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
public class VisitorRegisterAddParam
|
||||
implements Serializable {
|
||||
@NotNull(message="762510039")
|
||||
@Max(value=1L, message="762510040")
|
||||
private Integer addType;
|
||||
@Size(min=1, max=32, message="762510027")
|
||||
private String name;
|
||||
@Size(min=1, max=20, message="762510028")
|
||||
private String telephone;
|
||||
@Size(min=1, max=32, message="762510029")
|
||||
private String personName;
|
||||
@Size(min=1, max=20, message="762510030")
|
||||
private String personTelephone;
|
||||
@NotNull(message="762510031")
|
||||
private Long begVisiterTime;
|
||||
private Long endVisiterTime;
|
||||
private Long time;
|
||||
private String image;
|
||||
private String ul;
|
||||
private String pid;
|
||||
@Size(max=32, message="762510021")
|
||||
private String cardNo;
|
||||
private VisitorRegisterTypeEnum regType;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private String greetWord;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String personId;
|
||||
private String detailedAddress;
|
||||
private List<String> deviceIds;
|
||||
private List<String> floorIds;
|
||||
private Integer isDevice;
|
||||
|
||||
public List<String> getFloorIds() {
|
||||
return this.floorIds;
|
||||
}
|
||||
|
||||
public void setFloorIds(List<String> floorIds) {
|
||||
this.floorIds = floorIds;
|
||||
}
|
||||
|
||||
public Integer getIsDevice() {
|
||||
return this.isDevice;
|
||||
}
|
||||
|
||||
public void setIsDevice(Integer isDevice) {
|
||||
this.isDevice = isDevice;
|
||||
}
|
||||
|
||||
public Integer getAddType() {
|
||||
return this.addType;
|
||||
}
|
||||
|
||||
public void setAddType(Integer addType) {
|
||||
this.addType = addType;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Long getEndVisiterTime() {
|
||||
return this.endVisiterTime;
|
||||
}
|
||||
|
||||
public void setEndVisiterTime(Long endVisiterTime) {
|
||||
this.endVisiterTime = endVisiterTime;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public VisitorRegisterTypeEnum getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(VisitorRegisterTypeEnum regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getPid() {
|
||||
return this.pid;
|
||||
}
|
||||
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Long getBegVisiterTime() {
|
||||
return this.begVisiterTime;
|
||||
}
|
||||
|
||||
public void setBegVisiterTime(Long begVisiterTime) {
|
||||
this.begVisiterTime = begVisiterTime;
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return this.time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getImage() {
|
||||
return this.image;
|
||||
}
|
||||
|
||||
public void setImage(String image) {
|
||||
this.image = image;
|
||||
}
|
||||
|
||||
public String getUl() {
|
||||
return this.ul;
|
||||
}
|
||||
|
||||
public void setUl(String ul) {
|
||||
this.ul = ul;
|
||||
}
|
||||
}
|
||||
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.Length
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class VisitorRegisterApproveParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6890682191343347175L;
|
||||
@NotEmpty(message="762510035")
|
||||
@Size(max=999)
|
||||
private List<String> ids;
|
||||
@Size(max=999)
|
||||
private List<String> deviceIds;
|
||||
@NotNull(message="762510036")
|
||||
private Integer approveStatus;
|
||||
@Length(max=255)
|
||||
private String approveDesc;
|
||||
private boolean fromWx = false;
|
||||
|
||||
public boolean isFromWx() {
|
||||
return this.fromWx;
|
||||
}
|
||||
|
||||
public void setFromWx(boolean fromWx) {
|
||||
this.fromWx = fromWx;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public Integer getApproveStatus() {
|
||||
return this.approveStatus;
|
||||
}
|
||||
|
||||
public void setApproveStatus(Integer approveStatus) {
|
||||
this.approveStatus = approveStatus;
|
||||
}
|
||||
|
||||
public String getApproveDesc() {
|
||||
return this.approveDesc;
|
||||
}
|
||||
|
||||
public void setApproveDesc(String approveDesc) {
|
||||
this.approveDesc = approveDesc;
|
||||
}
|
||||
}
|
||||
|
||||
+260
@@ -0,0 +1,260 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.em.VisitorRegisterTypeEnum
|
||||
* javax.validation.constraints.Max
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.em.VisitorRegisterTypeEnum;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class VisitorRegisterEditParam
|
||||
implements Serializable {
|
||||
@NotBlank(message="762510035")
|
||||
private String id;
|
||||
@Size(min=1, max=32, message="762510027")
|
||||
private String name;
|
||||
@Size(min=1, max=20, message="762510028")
|
||||
private String telephone;
|
||||
@Size(min=1, max=32, message="762510029")
|
||||
private String personName;
|
||||
@Size(min=1, max=20, message="762510030")
|
||||
private String personTelephone;
|
||||
@NotNull(message="762510031")
|
||||
private Long begVisiterTime;
|
||||
private Long endVisiterTime;
|
||||
@NotNull(message="762510032")
|
||||
@Max(value=48L, message="762510037")
|
||||
private Long time;
|
||||
@NotEmpty(message="762510033")
|
||||
private String image;
|
||||
private String ul;
|
||||
private String pid;
|
||||
private String cardNo;
|
||||
private VisitorRegisterTypeEnum regType;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private String greetWord;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String personId;
|
||||
private String detailedAddress;
|
||||
private List<String> deviceIds;
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Long getEndVisiterTime() {
|
||||
return this.endVisiterTime;
|
||||
}
|
||||
|
||||
public void setEndVisiterTime(Long endVisiterTime) {
|
||||
this.endVisiterTime = endVisiterTime;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public VisitorRegisterTypeEnum getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(VisitorRegisterTypeEnum regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getPid() {
|
||||
return this.pid;
|
||||
}
|
||||
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Long getBegVisiterTime() {
|
||||
return this.begVisiterTime;
|
||||
}
|
||||
|
||||
public void setBegVisiterTime(Long begVisiterTime) {
|
||||
this.begVisiterTime = begVisiterTime;
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return this.time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getImage() {
|
||||
return this.image;
|
||||
}
|
||||
|
||||
public void setImage(String image) {
|
||||
this.image = image;
|
||||
}
|
||||
|
||||
public String getUl() {
|
||||
return this.ul;
|
||||
}
|
||||
|
||||
public void setUl(String ul) {
|
||||
this.ul = ul;
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class VisitorRegisterGetPidInfoParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6024384293252045633L;
|
||||
@NotBlank(message="762508047")
|
||||
private String pid;
|
||||
|
||||
public String getPid() {
|
||||
return this.pid;
|
||||
}
|
||||
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorRegisterGetsParam {
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
public class VisitorRegisterIdentifyParam
|
||||
implements Serializable {
|
||||
@NotNull(message="762510033")
|
||||
private String regFace;
|
||||
private String display;
|
||||
@NotNull(message="762510041")
|
||||
@Size(max=32, message="762510021")
|
||||
private String cardNo;
|
||||
|
||||
public String getRegFace() {
|
||||
return this.regFace;
|
||||
}
|
||||
|
||||
public void setRegFace(String regFace) {
|
||||
this.regFace = regFace;
|
||||
}
|
||||
|
||||
public String getDisplay() {
|
||||
return this.display;
|
||||
}
|
||||
|
||||
public void setDisplay(String display) {
|
||||
this.display = display;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
}
|
||||
|
||||
+134
@@ -0,0 +1,134 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
public class VisitorRegisterPageParam {
|
||||
private Integer approveStatus;
|
||||
private String name;
|
||||
private String telephone;
|
||||
private String personName;
|
||||
private Integer regType;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private String greetWord;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Integer getApproveStatus() {
|
||||
return this.approveStatus;
|
||||
}
|
||||
|
||||
public void setApproveStatus(Integer approveStatus) {
|
||||
this.approveStatus = approveStatus;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorRegisterSyncParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6890682191343347275L;
|
||||
private String id;
|
||||
private Long lastSyncTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getLastSyncTime() {
|
||||
return this.lastSyncTime;
|
||||
}
|
||||
|
||||
public void setLastSyncTime(Long lastSyncTime) {
|
||||
this.lastSyncTime = lastSyncTime;
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class VisitorYZTQrcodeUploadParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6890682391343347275L;
|
||||
@NotEmpty(message="762508053")
|
||||
private String qrcodeBase64;
|
||||
|
||||
public String getQrcodeBase64() {
|
||||
return this.qrcodeBase64;
|
||||
}
|
||||
|
||||
public void setQrcodeBase64(String qrcodeBase64) {
|
||||
this.qrcodeBase64 = qrcodeBase64;
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
public class VisitorAnalyseCycleBusinessResult {
|
||||
private String businessId;
|
||||
private String businessName;
|
||||
private Integer count;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getBusinessName() {
|
||||
return this.businessName;
|
||||
}
|
||||
|
||||
public void setBusinessName(String businessName) {
|
||||
this.businessName = businessName;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
}
|
||||
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorAnalyseCycleBusinessResult;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorAnalyseCycleResult {
|
||||
private String currentTime;
|
||||
private List<VisitorAnalyseCycleBusinessResult> ranking;
|
||||
|
||||
public String getCurrentTime() {
|
||||
return this.currentTime;
|
||||
}
|
||||
|
||||
public void setCurrentTime(String currentTime) {
|
||||
this.currentTime = currentTime;
|
||||
}
|
||||
|
||||
public List<VisitorAnalyseCycleBusinessResult> getRanking() {
|
||||
return this.ranking;
|
||||
}
|
||||
|
||||
public void setRanking(List<VisitorAnalyseCycleBusinessResult> ranking) {
|
||||
this.ranking = ranking;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorRegisterAddResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1966010306746457626L;
|
||||
private String id;
|
||||
private String regFacePath;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRegFacePath() {
|
||||
return this.regFacePath;
|
||||
}
|
||||
|
||||
public void setRegFacePath(String regFacePath) {
|
||||
this.regFacePath = regFacePath;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorRegisterCountResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1966010306746457656L;
|
||||
private Integer approveStatus;
|
||||
private Integer num;
|
||||
|
||||
public Integer getApproveStatus() {
|
||||
return this.approveStatus;
|
||||
}
|
||||
|
||||
public void setApproveStatus(Integer approveStatus) {
|
||||
this.approveStatus = approveStatus;
|
||||
}
|
||||
|
||||
public Integer getNum() {
|
||||
return this.num;
|
||||
}
|
||||
|
||||
public void setNum(Integer num) {
|
||||
this.num = num;
|
||||
}
|
||||
}
|
||||
|
||||
+275
@@ -0,0 +1,275 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.annotation.SensitiveField
|
||||
* cn.cloudwalk.cloud.enums.SensitiveType
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorDeviceInfoResult;
|
||||
import cn.cloudwalk.cloud.annotation.SensitiveField;
|
||||
import cn.cloudwalk.cloud.enums.SensitiveType;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorRegisterPageResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String name;
|
||||
private String telephone;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private String personTelephone;
|
||||
private Long begVisiterTime;
|
||||
private Long time;
|
||||
@DavinciPic
|
||||
private String regFaceUrl;
|
||||
private Integer approveStatus;
|
||||
private String approvePersonId;
|
||||
private String approvePersonName;
|
||||
private Long approveTime;
|
||||
private String approveDesc;
|
||||
private Long createTime;
|
||||
@SensitiveField(type=SensitiveType.ID_CARD)
|
||||
private String cardNo;
|
||||
private Integer regType;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private String greetWord;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String detailedAddress;
|
||||
private List<VisitorDeviceInfoResult> deviceInfo;
|
||||
|
||||
public List<VisitorDeviceInfoResult> getDeviceInfo() {
|
||||
return this.deviceInfo;
|
||||
}
|
||||
|
||||
public void setDeviceInfo(List<VisitorDeviceInfoResult> deviceInfo) {
|
||||
this.deviceInfo = deviceInfo;
|
||||
}
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Long getBegVisiterTime() {
|
||||
return this.begVisiterTime;
|
||||
}
|
||||
|
||||
public void setBegVisiterTime(Long begVisiterTime) {
|
||||
this.begVisiterTime = begVisiterTime;
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return this.time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public Integer getApproveStatus() {
|
||||
return this.approveStatus;
|
||||
}
|
||||
|
||||
public void setApproveStatus(Integer approveStatus) {
|
||||
this.approveStatus = approveStatus;
|
||||
}
|
||||
|
||||
public String getApprovePersonId() {
|
||||
return this.approvePersonId;
|
||||
}
|
||||
|
||||
public void setApprovePersonId(String approvePersonId) {
|
||||
this.approvePersonId = approvePersonId;
|
||||
}
|
||||
|
||||
public String getApprovePersonName() {
|
||||
return this.approvePersonName;
|
||||
}
|
||||
|
||||
public void setApprovePersonName(String approvePersonName) {
|
||||
this.approvePersonName = approvePersonName;
|
||||
}
|
||||
|
||||
public Long getApproveTime() {
|
||||
return this.approveTime;
|
||||
}
|
||||
|
||||
public void setApproveTime(Long approveTime) {
|
||||
this.approveTime = approveTime;
|
||||
}
|
||||
|
||||
public String getApproveDesc() {
|
||||
return this.approveDesc;
|
||||
}
|
||||
|
||||
public void setApproveDesc(String approveDesc) {
|
||||
this.approveDesc = approveDesc;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorRegisterPidInfoResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1966010306746457656L;
|
||||
private String personTelephone;
|
||||
private String personName;
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
}
|
||||
|
||||
+287
@@ -0,0 +1,287 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.annotation.SensitiveField
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
* cn.cloudwalk.cloud.enums.SensitiveType
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorDeviceInfoResult;
|
||||
import cn.cloudwalk.cloud.annotation.SensitiveField;
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import cn.cloudwalk.cloud.enums.SensitiveType;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorRegisterQueryResult
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private String businessId;
|
||||
private String name;
|
||||
private String telephone;
|
||||
private String personId;
|
||||
private String personTelephone;
|
||||
private Long begVisiterTime;
|
||||
private Long endVisiterTime;
|
||||
@DavinciPic
|
||||
private String regFaceUrl;
|
||||
private String regFacePath;
|
||||
private Integer approveStatus;
|
||||
private String approvePersonId;
|
||||
private Long approveTime;
|
||||
private String approveDesc;
|
||||
private String businessName;
|
||||
private String personName;
|
||||
private String approvePersonName;
|
||||
@SensitiveField(type=SensitiveType.ID_CARD)
|
||||
private String cardNo;
|
||||
private Integer regType;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private String greetWord;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String detailedAddress;
|
||||
private List<VisitorDeviceInfoResult> deviceInfo;
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public List<VisitorDeviceInfoResult> getDeviceInfo() {
|
||||
return this.deviceInfo;
|
||||
}
|
||||
|
||||
public void setDeviceInfo(List<VisitorDeviceInfoResult> deviceInfo) {
|
||||
this.deviceInfo = deviceInfo;
|
||||
}
|
||||
|
||||
public String getRegFacePath() {
|
||||
return this.regFacePath;
|
||||
}
|
||||
|
||||
public void setRegFacePath(String regFacePath) {
|
||||
this.regFacePath = regFacePath;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
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 getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Long getBegVisiterTime() {
|
||||
return this.begVisiterTime;
|
||||
}
|
||||
|
||||
public void setBegVisiterTime(Long begVisiterTime) {
|
||||
this.begVisiterTime = begVisiterTime;
|
||||
}
|
||||
|
||||
public Long getEndVisiterTime() {
|
||||
return this.endVisiterTime;
|
||||
}
|
||||
|
||||
public void setEndVisiterTime(Long endVisiterTime) {
|
||||
this.endVisiterTime = endVisiterTime;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public Integer getApproveStatus() {
|
||||
return this.approveStatus;
|
||||
}
|
||||
|
||||
public void setApproveStatus(Integer approveStatus) {
|
||||
this.approveStatus = approveStatus;
|
||||
}
|
||||
|
||||
public String getApprovePersonId() {
|
||||
return this.approvePersonId;
|
||||
}
|
||||
|
||||
public void setApprovePersonId(String approvePersonId) {
|
||||
this.approvePersonId = approvePersonId;
|
||||
}
|
||||
|
||||
public Long getApproveTime() {
|
||||
return this.approveTime;
|
||||
}
|
||||
|
||||
public void setApproveTime(Long approveTime) {
|
||||
this.approveTime = approveTime;
|
||||
}
|
||||
|
||||
public String getApproveDesc() {
|
||||
return this.approveDesc;
|
||||
}
|
||||
|
||||
public void setApproveDesc(String approveDesc) {
|
||||
this.approveDesc = approveDesc;
|
||||
}
|
||||
|
||||
public String getBusinessName() {
|
||||
return this.businessName;
|
||||
}
|
||||
|
||||
public void setBusinessName(String businessName) {
|
||||
this.businessName = businessName;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getApprovePersonName() {
|
||||
return this.approvePersonName;
|
||||
}
|
||||
|
||||
public void setApprovePersonName(String approvePersonName) {
|
||||
this.approvePersonName = approvePersonName;
|
||||
}
|
||||
}
|
||||
|
||||
+59
@@ -0,0 +1,59 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.register.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterAddParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterApproveParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterEditParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterGetPidInfoParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterGetsParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterIdentifyParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterPageParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorRegisterSyncParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorYZTQrcodeUploadParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorRegisterAddResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorRegisterCountResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorRegisterPageResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorRegisterPidInfoResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorRegisterQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface VisitorRegisterService {
|
||||
public CloudwalkResult<CloudwalkPageAble<VisitorRegisterPageResult>> page(VisitorRegisterPageParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<VisitorRegisterQueryResult>> pendingSync(VisitorRegisterSyncParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> approve(VisitorRegisterApproveParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<VisitorRegisterAddResult> add(VisitorRegisterAddParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<VisitorRegisterAddResult> edit(VisitorRegisterEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<VisitorRegisterQueryResult>> gets(VisitorRegisterGetsParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Integer> pendingCount(CloudwalkCallContext var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<VisitorRegisterCountResult>> count(CloudwalkCallContext var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> outerApprove(VisitorRegisterApproveParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<VisitorRegisterPidInfoResult> getPidInfo(VisitorRegisterGetPidInfoParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> qrcodeUpload(VisitorYZTQrcodeUploadParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> identify(VisitorRegisterIdentifyParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.client.davinci.portal.file.param.part.FilePartAppendParam
|
||||
* cn.cloudwalk.client.davinci.portal.file.param.part.FilePartFinishParam
|
||||
* cn.cloudwalk.client.davinci.portal.file.param.part.FilePartInitParam
|
||||
* cn.cloudwalk.client.davinci.portal.file.result.FilePartResult
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
* org.springframework.web.multipart.MultipartFile
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.storage.service;
|
||||
|
||||
import cn.cloudwalk.client.davinci.portal.file.param.part.FilePartAppendParam;
|
||||
import cn.cloudwalk.client.davinci.portal.file.param.part.FilePartFinishParam;
|
||||
import cn.cloudwalk.client.davinci.portal.file.param.part.FilePartInitParam;
|
||||
import cn.cloudwalk.client.davinci.portal.file.result.FilePartResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.photo.param.PhotoDelParam;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.io.InputStream;
|
||||
import java.util.List;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
public interface FileStorageService {
|
||||
public CloudwalkResult<String> fileUpload(String var1, String var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<String> bigFileUpload(MultipartFile var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<String> fileUpload(String var1, byte[] var2);
|
||||
|
||||
public CloudwalkResult<String> fileUpload(MultipartFile var1);
|
||||
|
||||
public byte[] fileDownload(String var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<String> getFileBase64(String var1) throws ServiceException;
|
||||
|
||||
public InputStream fileDownLoadWithAbsoluteUrl(String var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<String>> delete(PhotoDelParam var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<FilePartResult> filePartInit(FilePartInitParam var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<FilePartResult> filePartAppend(FilePartAppendParam var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<String> filePartFinish(FilePartFinishParam var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class AnonymousAddSignParam
|
||||
implements Serializable {
|
||||
@NotBlank
|
||||
private String bid;
|
||||
@NotNull
|
||||
private Long ct;
|
||||
@NotBlank
|
||||
private String sign;
|
||||
@NotNull
|
||||
private Integer ut;
|
||||
private String pid;
|
||||
|
||||
public String getPid() {
|
||||
return this.pid;
|
||||
}
|
||||
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public String getBid() {
|
||||
return this.bid;
|
||||
}
|
||||
|
||||
public void setBid(String bid) {
|
||||
this.bid = bid;
|
||||
}
|
||||
|
||||
public Long getCt() {
|
||||
return this.ct;
|
||||
}
|
||||
|
||||
public void setCt(Long ct) {
|
||||
this.ct = ct;
|
||||
}
|
||||
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
public Integer getUt() {
|
||||
return this.ut;
|
||||
}
|
||||
|
||||
public void setUt(Integer ut) {
|
||||
this.ut = ut;
|
||||
}
|
||||
}
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
public class VisitorAnalyseCountParam
|
||||
implements Serializable {
|
||||
private String businessId;
|
||||
@NotNull(message="762508029")
|
||||
private Long startTime;
|
||||
@NotNull(message="762508030")
|
||||
private Long endTime;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(Long startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
}
|
||||
|
||||
+116
@@ -0,0 +1,116 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorComplexQueryParam
|
||||
extends CloudwalkPageInfo
|
||||
implements Serializable {
|
||||
private String name;
|
||||
private String personName;
|
||||
private List<String> deviceIds;
|
||||
private Integer status;
|
||||
private Integer syncStatus;
|
||||
private List<String> districtIds;
|
||||
private List<String> areaIds;
|
||||
private Integer regType;
|
||||
private boolean fromOpen = false;
|
||||
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 void setFromOpen(boolean fromOpen) {
|
||||
this.fromOpen = fromOpen;
|
||||
}
|
||||
|
||||
public boolean isFromOpen() {
|
||||
return this.fromOpen;
|
||||
}
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public List<String> getDistrictIds() {
|
||||
return this.districtIds;
|
||||
}
|
||||
|
||||
public void setDistrictIds(List<String> districtIds) {
|
||||
this.districtIds = districtIds;
|
||||
}
|
||||
|
||||
public List<String> getAreaIds() {
|
||||
return this.areaIds;
|
||||
}
|
||||
|
||||
public void setAreaIds(List<String> areaIds) {
|
||||
this.areaIds = areaIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getSyncStatus() {
|
||||
return this.syncStatus;
|
||||
}
|
||||
|
||||
public void setSyncStatus(Integer syncStatus) {
|
||||
this.syncStatus = syncStatus;
|
||||
}
|
||||
}
|
||||
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorDelParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 9135714925446924698L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class VisitorDeviceAddDeviceParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5218973937865409936L;
|
||||
@NotEmpty(message="762508015")
|
||||
@Size(max=999)
|
||||
private List<String> personIds;
|
||||
@NotEmpty(message="762508020")
|
||||
@Size(max=999)
|
||||
private List<String> deviceIds;
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorDeviceAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3392234401598042894L;
|
||||
private String visitorId;
|
||||
private String visitorName;
|
||||
private String deviceId;
|
||||
private String facePath;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getFacePath() {
|
||||
return this.facePath;
|
||||
}
|
||||
|
||||
public void setFacePath(String facePath) {
|
||||
this.facePath = facePath;
|
||||
}
|
||||
}
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorDeviceDelParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3392234401598042894L;
|
||||
private String visitorId;
|
||||
private List<String> deviceIds;
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
|
||||
+67
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorDeviceEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3392234401598042894L;
|
||||
private String visitorId;
|
||||
private String visitorName;
|
||||
private List<String> deviceIds;
|
||||
private String facePath;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
public String getFacePath() {
|
||||
return this.facePath;
|
||||
}
|
||||
|
||||
public void setFacePath(String facePath) {
|
||||
this.facePath = facePath;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
|
||||
+226
@@ -0,0 +1,226 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class VisitorEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -2284847707712088620L;
|
||||
@NotBlank(message="762510018")
|
||||
private String id;
|
||||
@NotBlank(message="762510010")
|
||||
@Size(min=1, max=32, message="762510011")
|
||||
private String name;
|
||||
@Size(max=32, message="762510021")
|
||||
private String cardNo;
|
||||
@Size(max=64, message="762510015")
|
||||
private String greetWord;
|
||||
private String personId;
|
||||
private String personName;
|
||||
@NotNull(message="762510016")
|
||||
private Long begVisitorTime;
|
||||
@NotNull(message="762510017")
|
||||
private Long endVisitorTime;
|
||||
private String regFaceUrl;
|
||||
private String displayUrl;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private List<String> deviceIds;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String telephone;
|
||||
private String personTelephone;
|
||||
private String detailedAddress;
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public String getDisplayUrl() {
|
||||
return this.displayUrl;
|
||||
}
|
||||
|
||||
public void setDisplayUrl(String displayUrl) {
|
||||
this.displayUrl = displayUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
}
|
||||
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class VisitorGetsParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3454014008721633675L;
|
||||
@NotEmpty(message="762510008")
|
||||
private List<String> ids;
|
||||
private Integer isDelete;
|
||||
|
||||
public Integer getIsDelete() {
|
||||
return this.isDelete;
|
||||
}
|
||||
|
||||
public void setIsDelete(Integer isDelete) {
|
||||
this.isDelete = isDelete;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorImageStoreAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1905588481552157730L;
|
||||
private String deviceId;
|
||||
private String personId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorImageStoreDelParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 2142168126456730551L;
|
||||
private String deviceId;
|
||||
private String personId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
}
|
||||
|
||||
+126
@@ -0,0 +1,126 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.batch.param.ImportData;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute;
|
||||
|
||||
public class VisitorImportData
|
||||
implements ImportData {
|
||||
private static final long serialVersionUID = 6029122423607436805L;
|
||||
@ExcelAttribute(name="\u8bbf\u5ba2\u59d3\u540d")
|
||||
private String name;
|
||||
@ExcelAttribute(name="\u8bc1\u4ef6\u53f7\u7801")
|
||||
private String cardNo;
|
||||
@ExcelAttribute(name="\u624b\u673a\u53f7\u7801")
|
||||
private String telephone;
|
||||
@ExcelAttribute(name="\u8f66\u724c\u53f7\u7801")
|
||||
private String licensePlate;
|
||||
@ExcelAttribute(name="\u6765\u8bbf\u5355\u4f4d")
|
||||
private String companyName;
|
||||
@ExcelAttribute(name="\u6765\u8bbf\u4e8b\u7531")
|
||||
private String cause;
|
||||
@ExcelAttribute(name="\u643a\u5e26\u7269\u54c1")
|
||||
private String carryOn;
|
||||
@ExcelAttribute(name="\u8bed\u97f3\u63d0\u793a")
|
||||
private String greetWord;
|
||||
@ExcelAttribute(name="\u5de5\u53f7")
|
||||
private String workNo;
|
||||
@ExcelAttribute(name="\u8bbf\u5ba2\u7801")
|
||||
private String visitorCode;
|
||||
@ExcelAttribute(name="\u5907\u6ce8")
|
||||
private String remark;
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
}
|
||||
|
||||
+76
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorImportParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7232960748700523295L;
|
||||
private List<String> deviceIds;
|
||||
private String fileName;
|
||||
private Long begVisitorTime;
|
||||
private Long endVisitorTime;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private String filePath;
|
||||
|
||||
public String getFilePath() {
|
||||
return this.filePath;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
}
|
||||
|
||||
+281
@@ -0,0 +1,281 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.em.VisitorRegisterTypeEnum
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.NotBlank
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.em.VisitorRegisterTypeEnum;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.NotBlank;
|
||||
|
||||
public class VisitorNewParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5811635397252673243L;
|
||||
private String id;
|
||||
@NotBlank(message="762510010")
|
||||
@Size(min=1, max=32, message="762510011")
|
||||
private String name;
|
||||
@Size(max=32, message="762510021")
|
||||
private String cardNo;
|
||||
@Size(max=64, message="762510015")
|
||||
private String greetWord;
|
||||
private String personId;
|
||||
private String personName;
|
||||
@NotNull(message="762510016")
|
||||
private Long begVisitorTime;
|
||||
@NotNull(message="762510017")
|
||||
private Long endVisitorTime;
|
||||
private String regFaceUrl;
|
||||
private String displayUrl;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private List<String> deviceIds;
|
||||
private String registerId;
|
||||
private VisitorRegisterTypeEnum regType;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String telephone;
|
||||
private String personTelephone;
|
||||
private String detailedAddress;
|
||||
private List<String> floorIds;
|
||||
private Integer isDevice;
|
||||
private String operatorUserId;
|
||||
private String deviceCode;
|
||||
|
||||
public String getOperatorUserId() {
|
||||
return this.operatorUserId;
|
||||
}
|
||||
|
||||
public void setOperatorUserId(String operatorUserId) {
|
||||
this.operatorUserId = operatorUserId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public Integer getIsDevice() {
|
||||
return this.isDevice;
|
||||
}
|
||||
|
||||
public void setIsDevice(Integer isDevice) {
|
||||
this.isDevice = isDevice;
|
||||
}
|
||||
|
||||
public List<String> getFloorIds() {
|
||||
return this.floorIds;
|
||||
}
|
||||
|
||||
public void setFloorIds(List<String> floorIds) {
|
||||
this.floorIds = floorIds;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public VisitorRegisterTypeEnum getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(VisitorRegisterTypeEnum regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getRegisterId() {
|
||||
return this.registerId;
|
||||
}
|
||||
|
||||
public void setRegisterId(String registerId) {
|
||||
this.registerId = registerId;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public String getDisplayUrl() {
|
||||
return this.displayUrl;
|
||||
}
|
||||
|
||||
public void setDisplayUrl(String displayUrl) {
|
||||
this.displayUrl = displayUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
}
|
||||
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorQueryParam
|
||||
extends CloudwalkPageInfo
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5299444516018407156L;
|
||||
private String name;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private Long begVisitorTime;
|
||||
private Long endVisitorTime;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
}
|
||||
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AnonymousAddSignResult
|
||||
implements Serializable {
|
||||
private String bid;
|
||||
private Long ct;
|
||||
private String sign;
|
||||
private String pid;
|
||||
|
||||
public String getPid() {
|
||||
return this.pid;
|
||||
}
|
||||
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public String getBid() {
|
||||
return this.bid;
|
||||
}
|
||||
|
||||
public void setBid(String bid) {
|
||||
this.bid = bid;
|
||||
}
|
||||
|
||||
public Long getCt() {
|
||||
return this.ct;
|
||||
}
|
||||
|
||||
public void setCt(Long ct) {
|
||||
this.ct = ct;
|
||||
}
|
||||
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorAddResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7509829125401508459L;
|
||||
private String personId;
|
||||
private String faceId;
|
||||
private String groupId;
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getFaceId() {
|
||||
return this.faceId;
|
||||
}
|
||||
|
||||
public void setFaceId(String faceId) {
|
||||
this.faceId = faceId;
|
||||
}
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorDeviceInfoResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5806413488265632092L;
|
||||
private String deviceId;
|
||||
private String deviceName;
|
||||
private String deviceAreaName;
|
||||
|
||||
public String getDeviceAreaName() {
|
||||
return this.deviceAreaName;
|
||||
}
|
||||
|
||||
public void setDeviceAreaName(String deviceAreaName) {
|
||||
this.deviceAreaName = deviceAreaName;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
}
|
||||
|
||||
+291
@@ -0,0 +1,291 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorDeviceInfoResult;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class VisitorDeviceResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5806413488265632093L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private String cardNo;
|
||||
private String greetWord;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private Long begVisitorTime;
|
||||
private Long endVisitorTime;
|
||||
@DavinciPic
|
||||
private String regFaceUrl;
|
||||
@DavinciPic
|
||||
private String regFacePath;
|
||||
@DavinciPic
|
||||
private String displayUrl;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
private Integer isDelete;
|
||||
private List<VisitorDeviceInfoResult> deviceInfo;
|
||||
private Integer regType;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String telephone;
|
||||
private String personTelephone;
|
||||
private String detailedAddress;
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getRegFacePath() {
|
||||
return this.regFacePath;
|
||||
}
|
||||
|
||||
public void setRegFacePath(String regFacePath) {
|
||||
this.regFacePath = regFacePath;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
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 getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public String getDisplayUrl() {
|
||||
return this.displayUrl;
|
||||
}
|
||||
|
||||
public void setDisplayUrl(String displayUrl) {
|
||||
this.displayUrl = displayUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Integer getIsDelete() {
|
||||
return this.isDelete;
|
||||
}
|
||||
|
||||
public void setIsDelete(Integer isDelete) {
|
||||
this.isDelete = isDelete;
|
||||
}
|
||||
|
||||
public List<VisitorDeviceInfoResult> getDeviceInfo() {
|
||||
return this.deviceInfo;
|
||||
}
|
||||
|
||||
public void setDeviceInfo(List<VisitorDeviceInfoResult> deviceInfo) {
|
||||
this.deviceInfo = deviceInfo;
|
||||
}
|
||||
}
|
||||
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.annotation.SensitiveField
|
||||
* cn.cloudwalk.cloud.enums.SensitiveType
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import cn.cloudwalk.cloud.annotation.SensitiveField;
|
||||
import cn.cloudwalk.cloud.enums.SensitiveType;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorPageResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5806413488265632092L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
@SensitiveField(type=SensitiveType.ID_CARD)
|
||||
private String cardNo;
|
||||
private String greetWord;
|
||||
private String personId;
|
||||
private String personName;
|
||||
@DavinciPic
|
||||
private String regFaceUrl;
|
||||
@DavinciPic
|
||||
private String displayUrl;
|
||||
private String remark;
|
||||
private Long begVisitorTime;
|
||||
private Long endVisitorTime;
|
||||
private Integer validStatus;
|
||||
private String validStatusDesc;
|
||||
private Integer synState;
|
||||
private String synStateDesc;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private String visitorCode;
|
||||
private Integer regType;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String telephone;
|
||||
private String personTelephone;
|
||||
private String detailedAddress;
|
||||
private String deviceName;
|
||||
private String operatorUserName;
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getOperatorUserName() {
|
||||
return this.operatorUserName;
|
||||
}
|
||||
|
||||
public void setOperatorUserName(String operatorUserName) {
|
||||
this.operatorUserName = operatorUserName;
|
||||
}
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public Integer getValidStatus() {
|
||||
return this.validStatus;
|
||||
}
|
||||
|
||||
public void setValidStatus(Integer validStatus) {
|
||||
this.validStatus = validStatus;
|
||||
}
|
||||
|
||||
public String getValidStatusDesc() {
|
||||
return this.validStatusDesc;
|
||||
}
|
||||
|
||||
public void setValidStatusDesc(String validStatusDesc) {
|
||||
this.validStatusDesc = validStatusDesc;
|
||||
}
|
||||
|
||||
public String getSynStateDesc() {
|
||||
return this.synStateDesc;
|
||||
}
|
||||
|
||||
public void setSynStateDesc(String synStateDesc) {
|
||||
this.synStateDesc = synStateDesc;
|
||||
}
|
||||
|
||||
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 getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public String getDisplayUrl() {
|
||||
return this.displayUrl;
|
||||
}
|
||||
|
||||
public void setDisplayUrl(String displayUrl) {
|
||||
this.displayUrl = displayUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Integer getSynState() {
|
||||
return this.synState;
|
||||
}
|
||||
|
||||
public void setSynState(Integer synState) {
|
||||
this.synState = synState;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
}
|
||||
|
||||
+275
@@ -0,0 +1,275 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.annotation.SensitiveField
|
||||
* cn.cloudwalk.cloud.enums.SensitiveType
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import cn.cloudwalk.cloud.annotation.SensitiveField;
|
||||
import cn.cloudwalk.cloud.enums.SensitiveType;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6835803928819332341L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
@SensitiveField(type=SensitiveType.ID_CARD)
|
||||
private String cardNo;
|
||||
private String greetWord;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private Long begVisitorTime;
|
||||
private Long endVisitorTime;
|
||||
@DavinciPic
|
||||
private String regFaceUrl;
|
||||
@DavinciPic
|
||||
private String displayUrl;
|
||||
private String remark;
|
||||
private String workNo;
|
||||
private String visitorCode;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
private Integer isDelete;
|
||||
private Integer sex;
|
||||
private String companyName;
|
||||
private String cause;
|
||||
private String carryOn;
|
||||
private String licensePlate;
|
||||
private String telephone;
|
||||
private String personTelephone;
|
||||
private String detailedAddress;
|
||||
private Integer regType;
|
||||
|
||||
public Integer getRegType() {
|
||||
return this.regType;
|
||||
}
|
||||
|
||||
public void setRegType(Integer regType) {
|
||||
this.regType = regType;
|
||||
}
|
||||
|
||||
public String getDetailedAddress() {
|
||||
return this.detailedAddress;
|
||||
}
|
||||
|
||||
public void setDetailedAddress(String detailedAddress) {
|
||||
this.detailedAddress = detailedAddress;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getPersonTelephone() {
|
||||
return this.personTelephone;
|
||||
}
|
||||
|
||||
public void setPersonTelephone(String personTelephone) {
|
||||
this.personTelephone = personTelephone;
|
||||
}
|
||||
|
||||
public Integer getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(Integer sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return this.companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCause() {
|
||||
return this.cause;
|
||||
}
|
||||
|
||||
public void setCause(String cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public String getCarryOn() {
|
||||
return this.carryOn;
|
||||
}
|
||||
|
||||
public void setCarryOn(String carryOn) {
|
||||
this.carryOn = carryOn;
|
||||
}
|
||||
|
||||
public String getLicensePlate() {
|
||||
return this.licensePlate;
|
||||
}
|
||||
|
||||
public void setLicensePlate(String licensePlate) {
|
||||
this.licensePlate = licensePlate;
|
||||
}
|
||||
|
||||
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 getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return this.cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getGreetWord() {
|
||||
return this.greetWord;
|
||||
}
|
||||
|
||||
public void setGreetWord(String greetWord) {
|
||||
this.greetWord = greetWord;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public String getDisplayUrl() {
|
||||
return this.displayUrl;
|
||||
}
|
||||
|
||||
public void setDisplayUrl(String displayUrl) {
|
||||
this.displayUrl = displayUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getWorkNo() {
|
||||
return this.workNo;
|
||||
}
|
||||
|
||||
public void setWorkNo(String workNo) {
|
||||
this.workNo = workNo;
|
||||
}
|
||||
|
||||
public String getVisitorCode() {
|
||||
return this.visitorCode;
|
||||
}
|
||||
|
||||
public void setVisitorCode(String visitorCode) {
|
||||
this.visitorCode = visitorCode;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Integer getIsDelete() {
|
||||
return this.isDelete;
|
||||
}
|
||||
|
||||
public void setIsDelete(Integer isDelete) {
|
||||
this.isDelete = isDelete;
|
||||
}
|
||||
}
|
||||
|
||||
+147
@@ -0,0 +1,147 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute
|
||||
* cn.cloudwalk.common.ninca.visitor.annotation.ExcelBytesAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.ExcelAttribute;
|
||||
import cn.cloudwalk.common.ninca.visitor.annotation.ExcelBytesAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class VisitorResultExcel
|
||||
implements Serializable {
|
||||
@ExcelAttribute(name="\u59d3\u540d\uff08\u5fc5\u586b\uff09", column="A")
|
||||
private String name;
|
||||
private String regFaceUrl;
|
||||
private String displayUrl;
|
||||
@ExcelAttribute(name="\u6ce8\u518c\u7167", column="B", isPic=true)
|
||||
@ExcelBytesAttribute(pathField="regFaceUrl")
|
||||
private byte[] regFace;
|
||||
@ExcelAttribute(name="\u663e\u793a\u7167", column="C", isPic=true)
|
||||
@ExcelBytesAttribute(pathField="displayUrl")
|
||||
private byte[] display;
|
||||
@ExcelAttribute(name="\u63a5\u5f85\u4eba", column="D")
|
||||
private String personName;
|
||||
@ExcelAttribute(name="\u65f6\u6548\u72b6\u6001", column="E")
|
||||
private String validStatusDesc;
|
||||
@ExcelAttribute(name="\u5907\u6ce8", column="F")
|
||||
private String remark;
|
||||
@ExcelAttribute(name="\u8bbf\u5ba2\u6ce8\u518c\u65f6\u95f4", column="G", isDate=true)
|
||||
private Long createTime;
|
||||
@ExcelAttribute(name="\u8bbf\u5ba2\u6709\u6548\u5f00\u59cb\u65f6\u95f4", column="H", isDate=true)
|
||||
private Long begVisitorTime;
|
||||
@ExcelAttribute(name="\u8bbf\u5ba2\u6709\u6548\u7ed3\u675f\u65f6\u95f4", column="I", isDate=true)
|
||||
private Long endVisitorTime;
|
||||
@ExcelAttribute(name="\u8bbe\u5907\u540d\u79f0", column="J")
|
||||
private String deviceName;
|
||||
@ExcelAttribute(name="\u767b\u8bb0\u4eba\u540d\u79f0", column="K")
|
||||
private String operatorUserName;
|
||||
|
||||
public byte[] getRegFace() {
|
||||
return this.regFace;
|
||||
}
|
||||
|
||||
public void setRegFace(byte[] regFace) {
|
||||
this.regFace = regFace;
|
||||
}
|
||||
|
||||
public byte[] getDisplay() {
|
||||
return this.display;
|
||||
}
|
||||
|
||||
public void setDisplay(byte[] display) {
|
||||
this.display = display;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getRegFaceUrl() {
|
||||
return this.regFaceUrl;
|
||||
}
|
||||
|
||||
public void setRegFaceUrl(String regFaceUrl) {
|
||||
this.regFaceUrl = regFaceUrl;
|
||||
}
|
||||
|
||||
public String getDisplayUrl() {
|
||||
return this.displayUrl;
|
||||
}
|
||||
|
||||
public void setDisplayUrl(String displayUrl) {
|
||||
this.displayUrl = displayUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getValidStatusDesc() {
|
||||
return this.validStatusDesc;
|
||||
}
|
||||
|
||||
public void setValidStatusDesc(String validStatusDesc) {
|
||||
this.validStatusDesc = validStatusDesc;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getBegVisitorTime() {
|
||||
return this.begVisitorTime;
|
||||
}
|
||||
|
||||
public void setBegVisitorTime(Long begVisitorTime) {
|
||||
this.begVisitorTime = begVisitorTime;
|
||||
}
|
||||
|
||||
public Long getEndVisitorTime() {
|
||||
return this.endVisitorTime;
|
||||
}
|
||||
|
||||
public void setEndVisitorTime(Long endVisitorTime) {
|
||||
this.endVisitorTime = endVisitorTime;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getOperatorUserName() {
|
||||
return this.operatorUserName;
|
||||
}
|
||||
|
||||
public void setOperatorUserName(String operatorUserName) {
|
||||
this.operatorUserName = operatorUserName;
|
||||
}
|
||||
}
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.register.param.VisitorAnalyseCycleParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.register.result.VisitorAnalyseCycleResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorAnalyseCountParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface VisitorAnalyseService {
|
||||
public CloudwalkResult<List<VisitorAnalyseCycleResult>> analyseCycle(VisitorAnalyseCycleParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Integer> analyseCount(VisitorAnalyseCountParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
* cn.cloudwalk.common.ninca.visitor.bean.record.VisitorRecordQueryDTO
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.visitor.visitor.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorComplexQueryParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorDelParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorDeviceAddDeviceParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorEditParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorGetsParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorImportParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorNewParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.param.VisitorQueryParam;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorAddResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorDeviceResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorPageResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorResult;
|
||||
import cn.cloudwalk.client.ninca.visitor.visitor.result.VisitorResultExcel;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import cn.cloudwalk.common.ninca.visitor.bean.record.VisitorRecordQueryDTO;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface VisitorService {
|
||||
public CloudwalkResult<VisitorAddResult> add(VisitorNewParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> edit(VisitorEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<VisitorResult>> gets(VisitorGetsParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<VisitorDeviceResult>> getsIncludeDeviceInfo(VisitorGetsParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<VisitorPageResult>> page(VisitorComplexQueryParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> delete(VisitorDelParam var1, CloudwalkCallContext var2) throws ServiceException, DataAccessException;
|
||||
|
||||
public CloudwalkResult<Boolean> batchImport(VisitorImportParam var1, Map<String, String> var2, CloudwalkCallContext var3) throws ServiceException, DataAccessException;
|
||||
|
||||
public List<VisitorResultExcel> queryVisitorResultExcel(VisitorComplexQueryParam var1, CloudwalkCallContext var2) throws ServiceException, DataAccessException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<VisitorResult>> expired(VisitorQueryParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> deviceAdd(VisitorDeviceAddDeviceParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public List<String> listIdsByTime(VisitorRecordQueryDTO var1) throws DataAccessException;
|
||||
}
|
||||
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
Summary for /tmp/crk_lib_extract_6o_f40r3/ninca-crk-visitor-management-interface-2.9.1_210630-SNAPSHOT.jar
|
||||
Decompiled with CFR 0.152
|
||||
Reference in New Issue
Block a user