mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
Initial commit: five Maven reactors and docs only
Track maven-cloudwalk-cloud, maven-cw-elevator-application, maven-intelligent-cwoscomponent, maven-ninca-crk, maven-ninca-qk-alarm, and docs/. Other workspace paths ignored via .gitignore. Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<?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.intelligent</groupId>
|
||||
<artifactId>intelligent-cwoscomponent-decompiled-reactor</artifactId>
|
||||
<version>2.9.2-xinghewan</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>intelligent-cwoscomponent-interface</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<alibaba.eclipse.codestyle.path>${project.basedir}/../../docs/style/alibaba-eclipse-codestyle.xml</alibaba.eclipse.codestyle.path>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>cn.cloudwalk.cloud</groupId>
|
||||
<artifactId>cloudwalk-common-result</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>fastjson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.cloudwalk</groupId>
|
||||
<artifactId>cloudwalk-device-sdk-protocol-entity</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>net.revelc.code.formatter</groupId>
|
||||
<artifactId>formatter-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.account.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AccountLoginParam implements Serializable {
|
||||
private static final long serialVersionUID = 8612343623995305721L;
|
||||
private String loginName;
|
||||
private String corpCode;
|
||||
private Integer multiType;
|
||||
private String password;
|
||||
private Integer type;
|
||||
private String captchaKey;
|
||||
private String verifyCode;
|
||||
private Long accessTokenExp;
|
||||
private Long refreshTokenExp;
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getCorpCode() {
|
||||
return this.corpCode;
|
||||
}
|
||||
|
||||
public void setCorpCode(String corpCode) {
|
||||
this.corpCode = corpCode;
|
||||
}
|
||||
|
||||
public Integer getMultiType() {
|
||||
return this.multiType;
|
||||
}
|
||||
|
||||
public void setMultiType(Integer multiType) {
|
||||
this.multiType = multiType;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getCaptchaKey() {
|
||||
return this.captchaKey;
|
||||
}
|
||||
|
||||
public void setCaptchaKey(String captchaKey) {
|
||||
this.captchaKey = captchaKey;
|
||||
}
|
||||
|
||||
public String getVerifyCode() {
|
||||
return this.verifyCode;
|
||||
}
|
||||
|
||||
public void setVerifyCode(String verifyCode) {
|
||||
this.verifyCode = verifyCode;
|
||||
}
|
||||
|
||||
public Long getAccessTokenExp() {
|
||||
return this.accessTokenExp;
|
||||
}
|
||||
|
||||
public void setAccessTokenExp(Long accessTokenExp) {
|
||||
this.accessTokenExp = accessTokenExp;
|
||||
}
|
||||
|
||||
public Long getRefreshTokenExp() {
|
||||
return this.refreshTokenExp;
|
||||
}
|
||||
|
||||
public void setRefreshTokenExp(Long refreshTokenExp) {
|
||||
this.refreshTokenExp = refreshTokenExp;
|
||||
}
|
||||
}
|
||||
+133
@@ -0,0 +1,133 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.account.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AccountLoginResult implements Serializable {
|
||||
private static final long serialVersionUID = 8677543612395305721L;
|
||||
private String id;
|
||||
private String loginName;
|
||||
private Integer status;
|
||||
private String telephone;
|
||||
private String email;
|
||||
private String businessId;
|
||||
private String accessToken;
|
||||
private Long accessTokenExp;
|
||||
private String refreshToken;
|
||||
private Long refreshTokenExp;
|
||||
private String ext1;
|
||||
private String corpCode;
|
||||
private Boolean firstLogin;
|
||||
private Boolean emailEnable;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getAccessToken() {
|
||||
return this.accessToken;
|
||||
}
|
||||
|
||||
public void setAccessToken(String accessToken) {
|
||||
this.accessToken = accessToken;
|
||||
}
|
||||
|
||||
public Long getAccessTokenExp() {
|
||||
return this.accessTokenExp;
|
||||
}
|
||||
|
||||
public void setAccessTokenExp(Long accessTokenExp) {
|
||||
this.accessTokenExp = accessTokenExp;
|
||||
}
|
||||
|
||||
public String getRefreshToken() {
|
||||
return this.refreshToken;
|
||||
}
|
||||
|
||||
public void setRefreshToken(String refreshToken) {
|
||||
this.refreshToken = refreshToken;
|
||||
}
|
||||
|
||||
public Long getRefreshTokenExp() {
|
||||
return this.refreshTokenExp;
|
||||
}
|
||||
|
||||
public void setRefreshTokenExp(Long refreshTokenExp) {
|
||||
this.refreshTokenExp = refreshTokenExp;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getCorpCode() {
|
||||
return this.corpCode;
|
||||
}
|
||||
|
||||
public void setCorpCode(String corpCode) {
|
||||
this.corpCode = corpCode;
|
||||
}
|
||||
|
||||
public Boolean getFirstLogin() {
|
||||
return this.firstLogin;
|
||||
}
|
||||
|
||||
public void setFirstLogin(Boolean firstLogin) {
|
||||
this.firstLogin = firstLogin;
|
||||
}
|
||||
|
||||
public Boolean getEmailEnable() {
|
||||
return this.emailEnable;
|
||||
}
|
||||
|
||||
public void setEmailEnable(Boolean emailEnable) {
|
||||
this.emailEnable = emailEnable;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.account.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.account.param.AccountLoginParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.account.result.AccountLoginResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AccountLoginService {
|
||||
CloudwalkResult<AccountLoginResult> login(AccountLoginParam paramAccountLoginParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.face.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FaceAddParam implements Serializable {
|
||||
private static final long serialVersionUID = 8677543623995305721L;
|
||||
public String groupId;
|
||||
private String faceId;
|
||||
private String url;
|
||||
private String featureAttr;
|
||||
private String feature;
|
||||
private Long time;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public String getFaceId() {
|
||||
return this.faceId;
|
||||
}
|
||||
|
||||
public void setFaceId(String faceId) {
|
||||
this.faceId = faceId;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getFeatureAttr() {
|
||||
return this.featureAttr;
|
||||
}
|
||||
|
||||
public void setFeatureAttr(String featureAttr) {
|
||||
this.featureAttr = featureAttr;
|
||||
}
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
}
|
||||
|
||||
public void setFeature(String feature) {
|
||||
this.feature = feature;
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return this.time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.face.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FaceRemoveParam implements Serializable {
|
||||
private static final long serialVersionUID = -1406729003226535450L;
|
||||
private String groupId;
|
||||
private String faceId;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public String getFaceId() {
|
||||
return this.faceId;
|
||||
}
|
||||
|
||||
public void setFaceId(String faceId) {
|
||||
this.faceId = faceId;
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.face.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.face.param.FaceAddParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.face.param.FaceRemoveParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface FaceService {
|
||||
CloudwalkResult<Boolean> add(FaceAddParam paramFaceAddParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> remove(FaceRemoveParam paramFaceRemoveParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.feature.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FeatureExtractParam implements Serializable {
|
||||
private static final long serialVersionUID = -7065935417683951446L;
|
||||
private String image;
|
||||
private String algoVersion;
|
||||
|
||||
public String getImage() {
|
||||
return this.image;
|
||||
}
|
||||
|
||||
public void setImage(String image) {
|
||||
this.image = image;
|
||||
}
|
||||
|
||||
public String getAlgoVersion() {
|
||||
return this.algoVersion;
|
||||
}
|
||||
|
||||
public void setAlgoVersion(String algoVersion) {
|
||||
this.algoVersion = algoVersion;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.feature.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FeatureExtractResult implements Serializable {
|
||||
private static final long serialVersionUID = -8495872908625584060L;
|
||||
private String feature;
|
||||
private String qualityScores;
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
}
|
||||
|
||||
public void setFeature(String feature) {
|
||||
this.feature = feature;
|
||||
}
|
||||
|
||||
public String getQualityScores() {
|
||||
return this.qualityScores;
|
||||
}
|
||||
|
||||
public void setQualityScores(String qualityScores) {
|
||||
this.qualityScores = qualityScores;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.feature.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.feature.param.FeatureExtractParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.feature.result.FeatureExtractResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface FeatureService {
|
||||
CloudwalkResult<FeatureExtractResult> extract(FeatureExtractParam paramFeatureExtractParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class GroupAddParam implements Serializable {
|
||||
private static final long serialVersionUID = -2259828050232870638L;
|
||||
private String groupId;
|
||||
private String groupName;
|
||||
private String algoVersion;
|
||||
private String groupAttr;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public String getGroupName() {
|
||||
return this.groupName;
|
||||
}
|
||||
|
||||
public void setGroupName(String groupName) {
|
||||
this.groupName = groupName;
|
||||
}
|
||||
|
||||
public String getAlgoVersion() {
|
||||
return this.algoVersion;
|
||||
}
|
||||
|
||||
public void setAlgoVersion(String algoVersion) {
|
||||
this.algoVersion = algoVersion;
|
||||
}
|
||||
|
||||
public String getGroupAttr() {
|
||||
return this.groupAttr;
|
||||
}
|
||||
|
||||
public void setGroupAttr(String groupAttr) {
|
||||
this.groupAttr = groupAttr;
|
||||
}
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class GroupGetParam implements Serializable {
|
||||
private static final long serialVersionUID = 3488820861848790176L;
|
||||
private String groupId;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
}
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class GroupResult implements Serializable {
|
||||
private static final long serialVersionUID = -4413533545937319335L;
|
||||
private String groupId;
|
||||
private String groupName;
|
||||
private String algoVersion;
|
||||
private Integer subGroupCount;
|
||||
private Integer faceCount;
|
||||
private String groupAttr;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public String getGroupName() {
|
||||
return this.groupName;
|
||||
}
|
||||
|
||||
public void setGroupName(String groupName) {
|
||||
this.groupName = groupName;
|
||||
}
|
||||
|
||||
public String getAlgoVersion() {
|
||||
return this.algoVersion;
|
||||
}
|
||||
|
||||
public void setAlgoVersion(String algoVersion) {
|
||||
this.algoVersion = algoVersion;
|
||||
}
|
||||
|
||||
public Integer getSubGroupCount() {
|
||||
return this.subGroupCount;
|
||||
}
|
||||
|
||||
public void setSubGroupCount(Integer subGroupCount) {
|
||||
this.subGroupCount = subGroupCount;
|
||||
}
|
||||
|
||||
public Integer getFaceCount() {
|
||||
return this.faceCount;
|
||||
}
|
||||
|
||||
public void setFaceCount(Integer faceCount) {
|
||||
this.faceCount = faceCount;
|
||||
}
|
||||
|
||||
public String getGroupAttr() {
|
||||
return this.groupAttr;
|
||||
}
|
||||
|
||||
public void setGroupAttr(String groupAttr) {
|
||||
this.groupAttr = groupAttr;
|
||||
}
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.param.GroupAddParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.param.GroupGetParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.group.result.GroupResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface GroupService {
|
||||
CloudwalkResult<String> add(GroupAddParam paramGroupAddParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<GroupResult> get(GroupGetParam paramGroupGetParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
}
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.staticdb.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SearchMultipleParam implements Serializable {
|
||||
private static final long serialVersionUID = 6608790759108766363L;
|
||||
private String groupId;
|
||||
private Integer topN;
|
||||
private String feature;
|
||||
private String thresholdScore;
|
||||
private String featureAttr;
|
||||
private Long bTime;
|
||||
private Long eTime;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public Integer getTopN() {
|
||||
return this.topN;
|
||||
}
|
||||
|
||||
public void setTopN(Integer topN) {
|
||||
this.topN = topN;
|
||||
}
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
}
|
||||
|
||||
public void setFeature(String feature) {
|
||||
this.feature = feature;
|
||||
}
|
||||
|
||||
public String getThresholdScore() {
|
||||
return this.thresholdScore;
|
||||
}
|
||||
|
||||
public void setThresholdScore(String thresholdScore) {
|
||||
this.thresholdScore = thresholdScore;
|
||||
}
|
||||
|
||||
public String getFeatureAttr() {
|
||||
return this.featureAttr;
|
||||
}
|
||||
|
||||
public void setFeatureAttr(String featureAttr) {
|
||||
this.featureAttr = featureAttr;
|
||||
}
|
||||
|
||||
public Long getbTime() {
|
||||
return this.bTime;
|
||||
}
|
||||
|
||||
public void setbTime(Long bTime) {
|
||||
this.bTime = bTime;
|
||||
}
|
||||
|
||||
public Long geteTime() {
|
||||
return this.eTime;
|
||||
}
|
||||
|
||||
public void seteTime(Long eTime) {
|
||||
this.eTime = eTime;
|
||||
}
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.staticdb.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SearchResult implements Serializable {
|
||||
private static final long serialVersionUID = 2192713789378395770L;
|
||||
private String faceId;
|
||||
private String score;
|
||||
private String groupId;
|
||||
|
||||
public String getFaceId() {
|
||||
return this.faceId;
|
||||
}
|
||||
|
||||
public void setFaceId(String faceId) {
|
||||
this.faceId = faceId;
|
||||
}
|
||||
|
||||
public String getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(String score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.staticdb.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.staticdb.param.SearchMultipleParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.ai.v2.staticdb.result.SearchResult;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface SearchService {
|
||||
CloudwalkResult<List<SearchResult>> multiple(SearchMultipleParam paramSearchMultipleParam) throws ServiceException;
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ApplicationImageStoreAddParam implements Serializable {
|
||||
private static final long serialVersionUID = 1178121240688860236L;
|
||||
private String applicationId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ApplicationImageStoreDelParam implements Serializable {
|
||||
private static final long serialVersionUID = -3106548282541034177L;
|
||||
private String applicationId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ApplicationImageStoreQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = -988602886251134747L;
|
||||
private String applicationId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class SceneAppsGetParam implements Serializable {
|
||||
private static final long serialVersionUID = -5077434728641616044L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private List<String> businessIds;
|
||||
private String name;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
private Long createBeginTime;
|
||||
private Long createEndTime;
|
||||
private Long lastUpdateBeginTime;
|
||||
private Long lastUpdateEndTime;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public List<String> getBusinessIds() {
|
||||
return this.businessIds;
|
||||
}
|
||||
|
||||
public void setBusinessIds(List<String> businessIds) {
|
||||
this.businessIds = businessIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
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 Long getCreateBeginTime() {
|
||||
return this.createBeginTime;
|
||||
}
|
||||
|
||||
public void setCreateBeginTime(Long createBeginTime) {
|
||||
this.createBeginTime = createBeginTime;
|
||||
}
|
||||
|
||||
public Long getCreateEndTime() {
|
||||
return this.createEndTime;
|
||||
}
|
||||
|
||||
public void setCreateEndTime(Long createEndTime) {
|
||||
this.createEndTime = createEndTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateBeginTime() {
|
||||
return this.lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateBeginTime(Long lastUpdateBeginTime) {
|
||||
this.lastUpdateBeginTime = lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateEndTime() {
|
||||
return this.lastUpdateEndTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateEndTime(Long lastUpdateEndTime) {
|
||||
this.lastUpdateEndTime = lastUpdateEndTime;
|
||||
}
|
||||
}
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ApplicationImageStoreResult implements Serializable {
|
||||
private static final long serialVersionUID = 396027093181293371L;
|
||||
private String applicationId;
|
||||
private String applicationName;
|
||||
private String imageStoreId;
|
||||
private String imageStoreName;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getApplicationName() {
|
||||
return this.applicationName;
|
||||
}
|
||||
|
||||
public void setApplicationName(String applicationName) {
|
||||
this.applicationName = applicationName;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageStoreName() {
|
||||
return this.imageStoreName;
|
||||
}
|
||||
|
||||
public void setImageStoreName(String imageStoreName) {
|
||||
this.imageStoreName = imageStoreName;
|
||||
}
|
||||
}
|
||||
+79
@@ -0,0 +1,79 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.result;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
public class SceneAppsResult extends CloudwalkBaseTimes {
|
||||
private static final long serialVersionUID = 1418571742013903200L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.application.param.ApplicationImageStoreAddParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.application.param.ApplicationImageStoreDelParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.application.param.ApplicationImageStoreQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.application.result.ApplicationImageStoreResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface ApplicationImageStoreService {
|
||||
CloudwalkResult<Boolean> add(ApplicationImageStoreAddParam paramApplicationImageStoreAddParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> delete(ApplicationImageStoreDelParam paramApplicationImageStoreDelParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<List<ApplicationImageStoreResult>> list(
|
||||
ApplicationImageStoreQueryParam paramApplicationImageStoreQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.application.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.application.param.SceneAppsGetParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.application.result.SceneAppsResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface ApplicationService {
|
||||
CloudwalkResult<List<SceneAppsResult>> get(SceneAppsGetParam paramSceneAppsGetParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.biology.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FeatureExtractParam implements Serializable {
|
||||
private static final long serialVersionUID = -3699547584743511454L;
|
||||
private String imageUrl;
|
||||
private String imageBase64;
|
||||
|
||||
public String getImageUrl() {
|
||||
return this.imageUrl;
|
||||
}
|
||||
|
||||
public void setImageUrl(String imageUrl) {
|
||||
this.imageUrl = imageUrl;
|
||||
}
|
||||
|
||||
public String getImageBase64() {
|
||||
return this.imageBase64;
|
||||
}
|
||||
|
||||
public void setImageBase64(String imageBase64) {
|
||||
this.imageBase64 = imageBase64;
|
||||
}
|
||||
}
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.biology.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class FeatureQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = 8531290787219042818L;
|
||||
private String imageStoreId;
|
||||
private List<String> imageStoreIds;
|
||||
private String imageBase64;
|
||||
private String feature;
|
||||
private Integer topN;
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public String getImageBase64() {
|
||||
return this.imageBase64;
|
||||
}
|
||||
|
||||
public void setImageBase64(String imageBase64) {
|
||||
this.imageBase64 = imageBase64;
|
||||
}
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
}
|
||||
|
||||
public void setFeature(String feature) {
|
||||
this.feature = feature;
|
||||
}
|
||||
|
||||
public Integer getTopN() {
|
||||
return this.topN;
|
||||
}
|
||||
|
||||
public void setTopN(Integer topN) {
|
||||
this.topN = topN;
|
||||
}
|
||||
}
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.biology.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FeatureExtractResult implements Serializable {
|
||||
private static final long serialVersionUID = 8304579013896191253L;
|
||||
private String feature;
|
||||
private Double[] quality;
|
||||
private Double score;
|
||||
private String age;
|
||||
private String gender;
|
||||
|
||||
public String getFeature() {
|
||||
return this.feature;
|
||||
}
|
||||
|
||||
public void setFeature(String feature) {
|
||||
this.feature = feature;
|
||||
}
|
||||
|
||||
public Double[] getQuality() {
|
||||
return this.quality;
|
||||
}
|
||||
|
||||
public void setQuality(Double[] quality) {
|
||||
this.quality = quality;
|
||||
}
|
||||
|
||||
public Double getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(Double score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public String getAge() {
|
||||
return this.age;
|
||||
}
|
||||
|
||||
public void setAge(String age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public String getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
public void setGender(String gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
}
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.biology.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FeatureQueryResult implements Serializable {
|
||||
private static final long serialVersionUID = -8418592047845202667L;
|
||||
private String personId;
|
||||
private String imageId;
|
||||
private String imageStoreId;
|
||||
private String name;
|
||||
private Integer age;
|
||||
private Integer gender;
|
||||
private Double score;
|
||||
private String personCode;
|
||||
private String comparePicture;
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getAge() {
|
||||
return this.age;
|
||||
}
|
||||
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public Integer getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
public void setGender(Integer gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public Double getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(Double score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = personCode;
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture;
|
||||
}
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.biology.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.biology.param.FeatureExtractParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.biology.param.FeatureQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.biology.result.FeatureExtractResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.biology.result.FeatureQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface BiologyToolService {
|
||||
CloudwalkResult<FeatureExtractResult> extract(FeatureExtractParam paramFeatureExtractParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<List<FeatureQueryResult>> query(FeatureQueryParam paramFeatureQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<Map<String, List<FeatureQueryResult>>> querygroups(FeatureQueryParam paramFeatureQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceApplicationParam implements Serializable {
|
||||
private static final long serialVersionUID = 3303002881265656778L;
|
||||
private String deviceId;
|
||||
private String applicationId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceApplicationQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = -6201617724117140336L;
|
||||
private String applicationId;
|
||||
private String deviceId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceAreaDeleteParam implements Serializable {
|
||||
private static final long serialVersionUID = -6610039319513174151L;
|
||||
private String businessId;
|
||||
private String id;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceAreaQueryDeviceParam implements Serializable {
|
||||
private static final long serialVersionUID = -6610039319513174151L;
|
||||
private String businessId;
|
||||
private String areaId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
}
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceAreaQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = -6610039319513174151L;
|
||||
private String businessId;
|
||||
private String id;
|
||||
private List<String> ids;
|
||||
private String parentId;
|
||||
private List<String> parentIds;
|
||||
private String districtId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public List<String> getParentIds() {
|
||||
return this.parentIds;
|
||||
}
|
||||
|
||||
public void setParentIds(List<String> parentIds) {
|
||||
this.parentIds = parentIds;
|
||||
}
|
||||
|
||||
public String getDistrictId() {
|
||||
return this.districtId;
|
||||
}
|
||||
|
||||
public void setDistrictId(String districtId) {
|
||||
this.districtId = districtId;
|
||||
}
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceDeleteParam implements Serializable {
|
||||
private static final long serialVersionUID = -7109438389876339694L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceDistrictQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = -3567281133513652675L;
|
||||
private String id;
|
||||
private List<String> ids;
|
||||
private String parentId;
|
||||
private String districtCode;
|
||||
private String districtName;
|
||||
private String path;
|
||||
private Integer level;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getDistrictCode() {
|
||||
return this.districtCode;
|
||||
}
|
||||
|
||||
public void setDistrictCode(String districtCode) {
|
||||
this.districtCode = districtCode;
|
||||
}
|
||||
|
||||
public String getDistrictName() {
|
||||
return this.districtName;
|
||||
}
|
||||
|
||||
public void setDistrictName(String districtName) {
|
||||
this.districtName = districtName;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return this.path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public Integer getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceImageStoreParam implements Serializable {
|
||||
private static final long serialVersionUID = -3913386980647288670L;
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
public class DeviceImageStoreQueryParam extends CloudwalkBasePageForm {
|
||||
private static final long serialVersionUID = 6135725317271065182L;
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceImageStoreSaveParam implements Serializable {
|
||||
private static final long serialVersionUID = 1474058201067472896L;
|
||||
private String deviceId;
|
||||
private List<String> imageStoreIds;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
}
|
||||
+216
@@ -0,0 +1,216 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceQueryParam extends CloudwalkBasePageForm implements Serializable {
|
||||
private static final long serialVersionUID = -7109438389876339694L;
|
||||
private String id;
|
||||
private List<String> ids;
|
||||
private String businessId;
|
||||
private String deviceName;
|
||||
private String deviceTypeId;
|
||||
private List<String> deviceTypeIds;
|
||||
private String deviceTypeCategoryId;
|
||||
private String deviceTypeCode;
|
||||
private List<String> deviceTypeCodes;
|
||||
private Long createTimeBegin;
|
||||
private String deviceCode;
|
||||
private List<String> deviceCodes;
|
||||
private String districtId;
|
||||
private List<String> districtIds;
|
||||
private List<String> districtPath;
|
||||
private List<String> areaIds;
|
||||
private String applicationId;
|
||||
private List<String> applicationIds;
|
||||
private String orgId;
|
||||
private List<String> orgIds;
|
||||
private Integer onlineStatus;
|
||||
private String deviceIp;
|
||||
private Integer order;
|
||||
|
||||
public String getDeviceIp() {
|
||||
return this.deviceIp;
|
||||
}
|
||||
|
||||
public void setDeviceIp(String deviceIp) {
|
||||
this.deviceIp = deviceIp;
|
||||
}
|
||||
|
||||
public Integer getOrder() {
|
||||
return this.order;
|
||||
}
|
||||
|
||||
public void setOrder(Integer order) {
|
||||
this.order = order;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public List<String> getDeviceTypeIds() {
|
||||
return this.deviceTypeIds;
|
||||
}
|
||||
|
||||
public void setDeviceTypeIds(List<String> deviceTypeIds) {
|
||||
this.deviceTypeIds = deviceTypeIds;
|
||||
}
|
||||
|
||||
public String getDeviceTypeCategoryId() {
|
||||
return this.deviceTypeCategoryId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCategoryId(String deviceTypeCategoryId) {
|
||||
this.deviceTypeCategoryId = deviceTypeCategoryId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeCode() {
|
||||
return this.deviceTypeCode;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
this.deviceTypeCode = deviceTypeCode;
|
||||
}
|
||||
|
||||
public List<String> getDeviceTypeCodes() {
|
||||
return this.deviceTypeCodes;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCodes(List<String> deviceTypeCodes) {
|
||||
this.deviceTypeCodes = deviceTypeCodes;
|
||||
}
|
||||
|
||||
public Long getCreateTimeBegin() {
|
||||
return this.createTimeBegin;
|
||||
}
|
||||
|
||||
public void setCreateTimeBegin(Long createTimeBegin) {
|
||||
this.createTimeBegin = createTimeBegin;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public List<String> getDeviceCodes() {
|
||||
return this.deviceCodes;
|
||||
}
|
||||
|
||||
public void setDeviceCodes(List<String> deviceCodes) {
|
||||
this.deviceCodes = deviceCodes;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public List<String> getDistrictPath() {
|
||||
return this.districtPath;
|
||||
}
|
||||
|
||||
public void setDistrictPath(List<String> districtPath) {
|
||||
this.districtPath = districtPath;
|
||||
}
|
||||
|
||||
public List<String> getAreaIds() {
|
||||
return this.areaIds;
|
||||
}
|
||||
|
||||
public void setAreaIds(List<String> areaIds) {
|
||||
this.areaIds = areaIds;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getApplicationIds() {
|
||||
return this.applicationIds;
|
||||
}
|
||||
|
||||
public void setApplicationIds(List<String> applicationIds) {
|
||||
this.applicationIds = applicationIds;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public Integer getOnlineStatus() {
|
||||
return this.onlineStatus;
|
||||
}
|
||||
|
||||
public void setOnlineStatus(Integer onlineStatus) {
|
||||
this.onlineStatus = onlineStatus;
|
||||
}
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceSettingInitParam implements Serializable {
|
||||
private static final long serialVersionUID = -270681693865343706L;
|
||||
private List<String> deviceIds;
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
}
|
||||
+98
@@ -0,0 +1,98 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceSettingNotifyParam implements Serializable {
|
||||
private static final long serialVersionUID = -8994450163205392814L;
|
||||
@JsonProperty("device_id")
|
||||
private String deviceId;
|
||||
@JsonProperty("sub_device_ids")
|
||||
private List<String> subDeviceIds;
|
||||
@JsonProperty("log_id")
|
||||
private String logId;
|
||||
@JsonProperty("reserve_info")
|
||||
private String reserveInfo;
|
||||
@JsonProperty("setting_attr")
|
||||
private List<SettingAttr> setttingAttr;
|
||||
|
||||
public static class SettingAttr {
|
||||
private String name;
|
||||
private String value;
|
||||
private String remark;
|
||||
private List<SettingAttr> child;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public List<SettingAttr> getChild() {
|
||||
return this.child;
|
||||
}
|
||||
|
||||
public void setChild(List<SettingAttr> child) {
|
||||
this.child = child;
|
||||
}
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<String> getSubDeviceIds() {
|
||||
return this.subDeviceIds;
|
||||
}
|
||||
|
||||
public void setSubDeviceIds(List<String> subDeviceIds) {
|
||||
this.subDeviceIds = subDeviceIds;
|
||||
}
|
||||
|
||||
public String getLogId() {
|
||||
return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
|
||||
public List<SettingAttr> getSetttingAttr() {
|
||||
return this.setttingAttr;
|
||||
}
|
||||
|
||||
public void setSetttingAttr(List<SettingAttr> setttingAttr) {
|
||||
this.setttingAttr = setttingAttr;
|
||||
}
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceSettingQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = 4347961841621233071L;
|
||||
private List<String> deviceIds;
|
||||
private Short hasDefault;
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public Short getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public void setHasDefault(Short hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
}
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceTypeQueryParam implements Serializable {
|
||||
private static final long serialVersionUID = 5232138033725213978L;
|
||||
private String vendorId;
|
||||
|
||||
public String getVendorId() {
|
||||
return this.vendorId;
|
||||
}
|
||||
|
||||
public void setVendorId(String vendorId) {
|
||||
this.vendorId = vendorId;
|
||||
}
|
||||
}
|
||||
+59
@@ -0,0 +1,59 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.param;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class EntranceGuardControlParam implements Serializable {
|
||||
private static final long serialVersionUID = 4881929863751773329L;
|
||||
@JsonProperty("device_id")
|
||||
private String deviceId;
|
||||
@JsonProperty("sub_device_ids")
|
||||
private List<String> subDeviceIds;
|
||||
@JsonProperty("log_id")
|
||||
private String logId;
|
||||
@JsonProperty("reserve_info")
|
||||
private String reserveInfo;
|
||||
@JsonProperty("switch")
|
||||
private Integer guardSwitch;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<String> getSubDeviceIds() {
|
||||
return this.subDeviceIds;
|
||||
}
|
||||
|
||||
public void setSubDeviceIds(List<String> subDeviceIds) {
|
||||
this.subDeviceIds = subDeviceIds;
|
||||
}
|
||||
|
||||
public String getLogId() {
|
||||
return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
|
||||
public Integer getGuardSwitch() {
|
||||
return this.guardSwitch;
|
||||
}
|
||||
|
||||
public void setGuardSwitch(Integer guardSwitch) {
|
||||
this.guardSwitch = guardSwitch;
|
||||
}
|
||||
}
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceApplicationResult implements Serializable {
|
||||
private static final long serialVersionUID = -3017130099914740103L;
|
||||
private String id;
|
||||
private String applicationId;
|
||||
private String applicationName;
|
||||
private String deviceId;
|
||||
private String serviceCode;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getApplicationName() {
|
||||
return this.applicationName;
|
||||
}
|
||||
|
||||
public void setApplicationName(String applicationName) {
|
||||
this.applicationName = applicationName;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceAreaResult implements Serializable {
|
||||
private static final long serialVersionUID = -5853531485552872375L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Integer orderBy;
|
||||
private String parentId;
|
||||
private Integer level;
|
||||
|
||||
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 getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public Integer getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
}
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceDistrictResult implements Serializable {
|
||||
private static final long serialVersionUID = 8453176561081140451L;
|
||||
private String id;
|
||||
private String districtCode;
|
||||
private String districtName;
|
||||
private Integer level;
|
||||
private String parentId;
|
||||
private String mergeName;
|
||||
private String path;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDistrictCode() {
|
||||
return this.districtCode;
|
||||
}
|
||||
|
||||
public void setDistrictCode(String districtCode) {
|
||||
this.districtCode = districtCode;
|
||||
}
|
||||
|
||||
public String getDistrictName() {
|
||||
return this.districtName;
|
||||
}
|
||||
|
||||
public void setDistrictName(String districtName) {
|
||||
this.districtName = districtName;
|
||||
}
|
||||
|
||||
public Integer getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getMergeName() {
|
||||
return this.mergeName;
|
||||
}
|
||||
|
||||
public void setMergeName(String mergeName) {
|
||||
this.mergeName = mergeName;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return this.path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
}
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceImageStoreResult implements Serializable {
|
||||
private static final long serialVersionUID = -3407950997640159734L;
|
||||
private String deviceId;
|
||||
private String deviceName;
|
||||
private String imageStoreId;
|
||||
private String imageStoreName;
|
||||
|
||||
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 getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageStoreName() {
|
||||
return this.imageStoreName;
|
||||
}
|
||||
|
||||
public void setImageStoreName(String imageStoreName) {
|
||||
this.imageStoreName = imageStoreName;
|
||||
}
|
||||
}
|
||||
+322
@@ -0,0 +1,322 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceResult implements Serializable {
|
||||
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 protocol;
|
||||
private String cameraIp;
|
||||
private String cameraVmsRtspUrl;
|
||||
private String districtId;
|
||||
private String districtName;
|
||||
private String districtPath;
|
||||
private String districtMergeName;
|
||||
private String areaId;
|
||||
private String areaName;
|
||||
private String areaAddr;
|
||||
private String deviceTypeCategoryId;
|
||||
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;
|
||||
}
|
||||
|
||||
public String getDeviceTypeCategoryId() {
|
||||
return this.deviceTypeCategoryId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCategoryId(String deviceTypeCategoryId) {
|
||||
this.deviceTypeCategoryId = deviceTypeCategoryId;
|
||||
}
|
||||
}
|
||||
+102
@@ -0,0 +1,102 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceSettingInitResult implements Serializable {
|
||||
private static final long serialVersionUID = -3585783977521977806L;
|
||||
private String deviceId;
|
||||
private Boolean hasSucess;
|
||||
private List<DeviceSettings> settings;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Boolean getHasSucess() {
|
||||
return this.hasSucess;
|
||||
}
|
||||
|
||||
public void setHasSucess(Boolean hasSucess) {
|
||||
this.hasSucess = hasSucess;
|
||||
}
|
||||
|
||||
public List<DeviceSettings> getSettings() {
|
||||
return this.settings;
|
||||
}
|
||||
|
||||
public void setSettings(List<DeviceSettings> settings) {
|
||||
this.settings = settings;
|
||||
}
|
||||
|
||||
public static class DeviceSettings implements Serializable {
|
||||
private static final long serialVersionUID = -509498808431351572L;
|
||||
private String id;
|
||||
private String settingAttrName;
|
||||
private String settingAttrValue;
|
||||
private String settingAttrRemark;
|
||||
private String settingAttrCode;
|
||||
private String settingParentId;
|
||||
private List<DeviceSettings> child;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSettingAttrName() {
|
||||
return this.settingAttrName;
|
||||
}
|
||||
|
||||
public void setSettingAttrName(String settingAttrName) {
|
||||
this.settingAttrName = settingAttrName;
|
||||
}
|
||||
|
||||
public String getSettingAttrValue() {
|
||||
return this.settingAttrValue;
|
||||
}
|
||||
|
||||
public void setSettingAttrValue(String settingAttrValue) {
|
||||
this.settingAttrValue = settingAttrValue;
|
||||
}
|
||||
|
||||
public String getSettingAttrRemark() {
|
||||
return this.settingAttrRemark;
|
||||
}
|
||||
|
||||
public void setSettingAttrRemark(String settingAttrRemark) {
|
||||
this.settingAttrRemark = settingAttrRemark;
|
||||
}
|
||||
|
||||
public String getSettingAttrCode() {
|
||||
return this.settingAttrCode;
|
||||
}
|
||||
|
||||
public void setSettingAttrCode(String settingAttrCode) {
|
||||
this.settingAttrCode = settingAttrCode;
|
||||
}
|
||||
|
||||
public String getSettingParentId() {
|
||||
return this.settingParentId;
|
||||
}
|
||||
|
||||
public void setSettingParentId(String settingParentId) {
|
||||
this.settingParentId = settingParentId;
|
||||
}
|
||||
|
||||
public List<DeviceSettings> getChild() {
|
||||
return this.child;
|
||||
}
|
||||
|
||||
public void setChild(List<DeviceSettings> child) {
|
||||
this.child = child;
|
||||
}
|
||||
}
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceSettingNotifyResult implements Serializable {
|
||||
private static final long serialVersionUID = -4849133823593531237L;
|
||||
private String logId;
|
||||
private String deviceId;
|
||||
private String reserveInfo;
|
||||
|
||||
public String getLogId() {
|
||||
return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
}
|
||||
+102
@@ -0,0 +1,102 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceSettingResult implements Serializable {
|
||||
private static final long serialVersionUID = -3585783977521977806L;
|
||||
private String deviceId;
|
||||
private List<DeviceSettings> settings;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<DeviceSettings> getSettings() {
|
||||
return this.settings;
|
||||
}
|
||||
|
||||
public void setSettings(List<DeviceSettings> settings) {
|
||||
this.settings = settings;
|
||||
}
|
||||
|
||||
public static class DeviceSettings implements Serializable {
|
||||
private static final long serialVersionUID = -509498808431351572L;
|
||||
private String id;
|
||||
private String settingAttrName;
|
||||
private String settingAttrValue;
|
||||
private String settingAttrRemark;
|
||||
private String settingAttrCode;
|
||||
private String settingAttrDisplay;
|
||||
private String settingParentId;
|
||||
private List<DeviceSettings> child;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSettingAttrName() {
|
||||
return this.settingAttrName;
|
||||
}
|
||||
|
||||
public void setSettingAttrName(String settingAttrName) {
|
||||
this.settingAttrName = settingAttrName;
|
||||
}
|
||||
|
||||
public String getSettingAttrValue() {
|
||||
return this.settingAttrValue;
|
||||
}
|
||||
|
||||
public void setSettingAttrValue(String settingAttrValue) {
|
||||
this.settingAttrValue = settingAttrValue;
|
||||
}
|
||||
|
||||
public String getSettingAttrRemark() {
|
||||
return this.settingAttrRemark;
|
||||
}
|
||||
|
||||
public void setSettingAttrRemark(String settingAttrRemark) {
|
||||
this.settingAttrRemark = settingAttrRemark;
|
||||
}
|
||||
|
||||
public String getSettingAttrCode() {
|
||||
return this.settingAttrCode;
|
||||
}
|
||||
|
||||
public void setSettingAttrCode(String settingAttrCode) {
|
||||
this.settingAttrCode = settingAttrCode;
|
||||
}
|
||||
|
||||
public String getSettingAttrDisplay() {
|
||||
return this.settingAttrDisplay;
|
||||
}
|
||||
|
||||
public void setSettingAttrDisplay(String settingAttrDisplay) {
|
||||
this.settingAttrDisplay = settingAttrDisplay;
|
||||
}
|
||||
|
||||
public String getSettingParentId() {
|
||||
return this.settingParentId;
|
||||
}
|
||||
|
||||
public void setSettingParentId(String settingParentId) {
|
||||
this.settingParentId = settingParentId;
|
||||
}
|
||||
|
||||
public List<DeviceSettings> getChild() {
|
||||
return this.child;
|
||||
}
|
||||
|
||||
public void setChild(List<DeviceSettings> child) {
|
||||
this.child = child;
|
||||
}
|
||||
}
|
||||
}
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DeviceStatusResult implements Serializable {
|
||||
private static final long serialVersionUID = -3535840233209237358L;
|
||||
private String total;
|
||||
private String onlineTotal;
|
||||
private String offlineTotal;
|
||||
private String alarmTotal;
|
||||
|
||||
public String getTotal() {
|
||||
return this.total;
|
||||
}
|
||||
|
||||
public void setTotal(String total) {
|
||||
this.total = total;
|
||||
}
|
||||
|
||||
public String getOnlineTotal() {
|
||||
return this.onlineTotal;
|
||||
}
|
||||
|
||||
public void setOnlineTotal(String onlineTotal) {
|
||||
this.onlineTotal = onlineTotal;
|
||||
}
|
||||
|
||||
public String getOfflineTotal() {
|
||||
return this.offlineTotal;
|
||||
}
|
||||
|
||||
public void setOfflineTotal(String offlineTotal) {
|
||||
this.offlineTotal = offlineTotal;
|
||||
}
|
||||
|
||||
public String getAlarmTotal() {
|
||||
return this.alarmTotal;
|
||||
}
|
||||
|
||||
public void setAlarmTotal(String alarmTotal) {
|
||||
this.alarmTotal = alarmTotal;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AcsDeviceStatusResult{total='" + this.total + '\'' + ", onlineTotal='" + this.onlineTotal + '\''
|
||||
+ ", offlineTotal='" + this.offlineTotal + '\'' + ", alarmTotal='" + this.alarmTotal + '\'' + '}';
|
||||
}
|
||||
}
|
||||
+75
@@ -0,0 +1,75 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceTypeResult implements Serializable {
|
||||
private static final long serialVersionUID = -3632869555376118817L;
|
||||
private String id;
|
||||
private String name;
|
||||
private List<DeviceTypeDetailResult> children;
|
||||
|
||||
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 List<DeviceTypeDetailResult> getChildren() {
|
||||
return this.children;
|
||||
}
|
||||
|
||||
public void setChildren(List<DeviceTypeDetailResult> children) {
|
||||
this.children = children;
|
||||
}
|
||||
|
||||
public static class DeviceTypeDetailResult implements Serializable {
|
||||
private static final long serialVersionUID = 7986719991301620566L;
|
||||
private String id;
|
||||
private String deviceTypeCode;
|
||||
private Boolean ifThirdParty;
|
||||
private String name;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceTypeCode() {
|
||||
return this.deviceTypeCode;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
this.deviceTypeCode = deviceTypeCode;
|
||||
}
|
||||
|
||||
public Boolean getIfThirdParty() {
|
||||
return this.ifThirdParty;
|
||||
}
|
||||
|
||||
public void setIfThirdParty(Boolean ifThirdParty) {
|
||||
this.ifThirdParty = ifThirdParty;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EntranceGuardControlResult implements Serializable {
|
||||
private static final long serialVersionUID = 6304980376433790660L;
|
||||
private String logId;
|
||||
private String deviceId;
|
||||
private String reserveInfo;
|
||||
|
||||
public String getLogId() {
|
||||
return this.logId;
|
||||
}
|
||||
|
||||
public void setLogId(String logId) {
|
||||
this.logId = logId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
}
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceApplicationParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceApplicationQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceApplicationResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceApplicationService {
|
||||
CloudwalkResult<Boolean> add(DeviceApplicationParam paramDeviceApplicationParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> delete(DeviceApplicationParam paramDeviceApplicationParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<List<DeviceApplicationResult>> list(DeviceApplicationQueryParam paramDeviceApplicationQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceAreaDeleteParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceAreaQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceAreaResult;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceAreaService {
|
||||
CloudwalkResult<List<DeviceAreaResult>> list(DeviceAreaQueryParam paramDeviceAreaQueryParam)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> delete(DeviceAreaDeleteParam paramDeviceAreaDeleteParam) throws ServiceException;
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceDistrictQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceDistrictResult;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceDistrictService {
|
||||
CloudwalkResult<List<DeviceDistrictResult>> list(DeviceDistrictQueryParam paramDeviceDistrictQueryParam)
|
||||
throws ServiceException;
|
||||
}
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceImageStoreParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceImageStoreQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceImageStoreSaveParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceImageStoreResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceImageStoreService {
|
||||
CloudwalkResult<Boolean> add(DeviceImageStoreParam paramDeviceImageStoreParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> delete(DeviceImageStoreParam paramDeviceImageStoreParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> save(DeviceImageStoreSaveParam paramDeviceImageStoreSaveParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<List<DeviceImageStoreResult>> list(DeviceImageStoreQueryParam paramDeviceImageStoreQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<CloudwalkPageAble<DeviceImageStoreResult>>
|
||||
page(DeviceImageStoreQueryParam paramDeviceImageStoreQueryParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import cn.cloudwalk.device.sdk.protocol.entity.v2proto.http.param.UpdatePersonParam;
|
||||
import cn.cloudwalk.device.sdk.protocol.entity.v2proto.http.result.UpdatePersonResult;
|
||||
|
||||
public interface DeviceKitService {
|
||||
CloudwalkResult<UpdatePersonResult> updatePerson(UpdatePersonParam paramUpdatePersonParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceSettingNotifyParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.EntranceGuardControlParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceSettingNotifyResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.EntranceGuardControlResult;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface DeviceNotifyService {
|
||||
CloudwalkResult<DeviceSettingNotifyResult> notifySetting(DeviceSettingNotifyParam paramDeviceSettingNotifyParam)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<EntranceGuardControlResult>
|
||||
entranceGuardControl(EntranceGuardControlParam paramEntranceGuardControlParam) throws ServiceException;
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceDeleteParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceStatusResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceService {
|
||||
CloudwalkResult<List<DeviceResult>> list(DeviceQueryParam paramDeviceQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<List<DeviceResult>> filterList(Integer paramInteger, DeviceQueryParam paramDeviceQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<CloudwalkPageAble<DeviceResult>> page(DeviceQueryParam paramDeviceQueryParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<DeviceStatusResult> statusCount(CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> delete(DeviceDeleteParam paramDeviceDeleteParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceSettingInitParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceSettingQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceSettingInitResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceSettingResult;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceSettingService {
|
||||
CloudwalkResult<List<DeviceSettingResult>> query(DeviceSettingQueryParam paramDeviceSettingQueryParam)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<List<DeviceSettingInitResult>> defaultSettings(DeviceSettingInitParam paramDeviceSettingInitParam)
|
||||
throws ServiceException;
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.device.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.param.DeviceTypeQueryParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceTypeResult;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceTypeService {
|
||||
CloudwalkResult<List<DeviceTypeResult>> get(DeviceTypeQueryParam paramDeviceTypeQueryParam) throws ServiceException;
|
||||
}
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.elevator.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AcsPersonAddVisitorParam implements Serializable {
|
||||
private static final long serialVersionUID = 7916140658162290825L;
|
||||
private String visitorId;
|
||||
private String personId;
|
||||
private Long begVisitorTime;
|
||||
private Long endVisitorTime;
|
||||
private List<String> floorIds;
|
||||
|
||||
public List<String> getFloorIds() {
|
||||
return this.floorIds;
|
||||
}
|
||||
|
||||
public void setFloorIds(List<String> floorIds) {
|
||||
this.floorIds = floorIds;
|
||||
}
|
||||
|
||||
public String getVisitorId() {
|
||||
return this.visitorId;
|
||||
}
|
||||
|
||||
public void setVisitorId(String visitorId) {
|
||||
this.visitorId = visitorId;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.elevator.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.elevator.param.AcsPersonAddVisitorParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface ElevatorPersonService {
|
||||
CloudwalkResult<Boolean> addVisitor(AcsPersonAddVisitorParam paramAcsPersonAddVisitorParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
}
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.email.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EmailSendParam implements Serializable {
|
||||
private static final long serialVersionUID = -2314735328497391125L;
|
||||
private String serviceCode;
|
||||
private String email;
|
||||
private String title;
|
||||
private String content;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return this.title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return this.content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.email.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.email.param.EmailSendParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface EmailSendService {
|
||||
CloudwalkResult<Boolean> send(EmailSendParam paramEmailSendParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
}
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.file.param;
|
||||
|
||||
public class FileFinishParam {
|
||||
private String fileId;
|
||||
private Long fileSize;
|
||||
private String filePath;
|
||||
private Integer fileStatus;
|
||||
private String errorCode;
|
||||
private String 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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.file.param;
|
||||
|
||||
public class FileGetParam {
|
||||
private String fileId;
|
||||
|
||||
public String getFileId() {
|
||||
return this.fileId;
|
||||
}
|
||||
|
||||
public void setFileId(String fileId) {
|
||||
this.fileId = fileId;
|
||||
}
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.file.param;
|
||||
|
||||
public class FileInitParam {
|
||||
private String fileName;
|
||||
private String applicationId;
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
}
|
||||
+175
@@ -0,0 +1,175 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.file.result;
|
||||
|
||||
public class FileDetail {
|
||||
private String id;
|
||||
private String orgId;
|
||||
private String fileName;
|
||||
private String filePath;
|
||||
private Long fileSize;
|
||||
private String serviceCode;
|
||||
private String serviceName;
|
||||
private String businessId;
|
||||
private String applicationId;
|
||||
private Integer status;
|
||||
private Integer readStatus;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private String fileAddress;
|
||||
private String createUserName;
|
||||
private String errorCode;
|
||||
private String errorMessage;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getFilePath() {
|
||||
return this.filePath;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public Long getFileSize() {
|
||||
return this.fileSize;
|
||||
}
|
||||
|
||||
public void setFileSize(Long fileSize) {
|
||||
this.fileSize = fileSize;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getServiceName() {
|
||||
return this.serviceName;
|
||||
}
|
||||
|
||||
public void setServiceName(String serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getReadStatus() {
|
||||
return this.readStatus;
|
||||
}
|
||||
|
||||
public void setReadStatus(Integer readStatus) {
|
||||
this.readStatus = readStatus;
|
||||
}
|
||||
|
||||
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 getFileAddress() {
|
||||
return this.fileAddress;
|
||||
}
|
||||
|
||||
public void setFileAddress(String fileAddress) {
|
||||
this.fileAddress = fileAddress;
|
||||
}
|
||||
|
||||
public String getCreateUserName() {
|
||||
return this.createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.file.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.file.param.FileFinishParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.file.param.FileGetParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.file.param.FileInitParam;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.file.result.FileDetail;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface FileService {
|
||||
CloudwalkResult<String> init(FileInitParam paramFileInitParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
|
||||
CloudwalkResult<Boolean> finish(FileFinishParam paramFileFinishParam,
|
||||
CloudwalkCallContext paramCloudwalkCallContext) throws ServiceException;
|
||||
|
||||
CloudwalkResult<FileDetail> get(FileGetParam paramFileGetParam, CloudwalkCallContext paramCloudwalkCallContext)
|
||||
throws ServiceException;
|
||||
}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
public class DevicePersonResyncParam {
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DevicePersonResyncRequestParam {
|
||||
private List<DevicePersonResyncParam> data;
|
||||
|
||||
public List<DevicePersonResyncParam> getData() {
|
||||
return this.data;
|
||||
}
|
||||
|
||||
public void setData(List<DevicePersonResyncParam> data) {
|
||||
this.data = data;
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStoreAddParam implements Serializable {
|
||||
private static final long serialVersionUID = -4752584836625211996L;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Short type;
|
||||
private String sourceApplicationId;
|
||||
private List<String> includeOrganizations;
|
||||
private List<String> includeLabels;
|
||||
private List<ImageStorePersonData> includePersons;
|
||||
private List<String> excludeLabels;
|
||||
private List<String> excludePersons;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private Boolean nullDateIsLongTerm;
|
||||
|
||||
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 Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getSourceApplicationId() {
|
||||
return this.sourceApplicationId;
|
||||
}
|
||||
|
||||
public void setSourceApplicationId(String sourceApplicationId) {
|
||||
this.sourceApplicationId = sourceApplicationId;
|
||||
}
|
||||
|
||||
public List<String> getIncludeOrganizations() {
|
||||
return this.includeOrganizations;
|
||||
}
|
||||
|
||||
public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
this.includeOrganizations = includeOrganizations;
|
||||
}
|
||||
|
||||
public List<String> getIncludeLabels() {
|
||||
return this.includeLabels;
|
||||
}
|
||||
|
||||
public void setIncludeLabels(List<String> includeLabels) {
|
||||
this.includeLabels = includeLabels;
|
||||
}
|
||||
|
||||
public List<ImageStorePersonData> getIncludePersons() {
|
||||
return this.includePersons;
|
||||
}
|
||||
|
||||
public void setIncludePersons(List<ImageStorePersonData> includePersons) {
|
||||
this.includePersons = includePersons;
|
||||
}
|
||||
|
||||
public List<String> getExcludeLabels() {
|
||||
return this.excludeLabels;
|
||||
}
|
||||
|
||||
public void setExcludeLabels(List<String> excludeLabels) {
|
||||
this.excludeLabels = excludeLabels;
|
||||
}
|
||||
|
||||
public List<String> getExcludePersons() {
|
||||
return this.excludePersons;
|
||||
}
|
||||
|
||||
public void setExcludePersons(List<String> excludePersons) {
|
||||
this.excludePersons = excludePersons;
|
||||
}
|
||||
|
||||
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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public Boolean getNullDateIsLongTerm() {
|
||||
return this.nullDateIsLongTerm;
|
||||
}
|
||||
|
||||
public void setNullDateIsLongTerm(Boolean nullDateIsLongTerm) {
|
||||
this.nullDateIsLongTerm = nullDateIsLongTerm;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImageStoreDelParam implements Serializable {
|
||||
private static final long serialVersionUID = -7757948003771596121L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
+116
@@ -0,0 +1,116 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStoreEditParam implements Serializable {
|
||||
private static final long serialVersionUID = -318653703709582283L;
|
||||
private String businessId;
|
||||
private String imageStoreId;
|
||||
private String name;
|
||||
private List<String> includeOrganizations;
|
||||
private List<String> includeLabels;
|
||||
private List<ImageStorePersonData> includePersons;
|
||||
private List<String> excludeLabels;
|
||||
private List<String> excludePersons;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private Boolean nullDateIsLongTerm;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getIncludeOrganizations() {
|
||||
return this.includeOrganizations;
|
||||
}
|
||||
|
||||
public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
this.includeOrganizations = includeOrganizations;
|
||||
}
|
||||
|
||||
public List<String> getIncludeLabels() {
|
||||
return this.includeLabels;
|
||||
}
|
||||
|
||||
public void setIncludeLabels(List<String> includeLabels) {
|
||||
this.includeLabels = includeLabels;
|
||||
}
|
||||
|
||||
public List<ImageStorePersonData> getIncludePersons() {
|
||||
return this.includePersons;
|
||||
}
|
||||
|
||||
public void setIncludePersons(List<ImageStorePersonData> includePersons) {
|
||||
this.includePersons = includePersons;
|
||||
}
|
||||
|
||||
public List<String> getExcludeLabels() {
|
||||
return this.excludeLabels;
|
||||
}
|
||||
|
||||
public void setExcludeLabels(List<String> excludeLabels) {
|
||||
this.excludeLabels = excludeLabels;
|
||||
}
|
||||
|
||||
public List<String> getExcludePersons() {
|
||||
return this.excludePersons;
|
||||
}
|
||||
|
||||
public void setExcludePersons(List<String> excludePersons) {
|
||||
this.excludePersons = excludePersons;
|
||||
}
|
||||
|
||||
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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public Boolean getNullDateIsLongTerm() {
|
||||
return this.nullDateIsLongTerm;
|
||||
}
|
||||
|
||||
public void setNullDateIsLongTerm(Boolean nullDateIsLongTerm) {
|
||||
this.nullDateIsLongTerm = nullDateIsLongTerm;
|
||||
}
|
||||
}
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStorePersonBindParam implements Serializable {
|
||||
private static final long serialVersionUID = 9091344259594326737L;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private List<String> personIds;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private Boolean nullDateIsLongTerm;
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public 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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public Boolean getNullDateIsLongTerm() {
|
||||
return this.nullDateIsLongTerm;
|
||||
}
|
||||
|
||||
public void setNullDateIsLongTerm(Boolean nullDateIsLongTerm) {
|
||||
this.nullDateIsLongTerm = nullDateIsLongTerm;
|
||||
}
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStorePersonData implements Serializable {
|
||||
private static final long serialVersionUID = -2390114338999450327L;
|
||||
private String objectId;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
|
||||
public String getObjectId() {
|
||||
return this.objectId;
|
||||
}
|
||||
|
||||
public void setObjectId(String objectId) {
|
||||
this.objectId = objectId;
|
||||
}
|
||||
|
||||
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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImageStorePersonDelParam implements Serializable {
|
||||
private static final long serialVersionUID = 7863455323559730674L;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStorePersonQueryParam extends CloudwalkBasePageForm {
|
||||
private static final long serialVersionUID = -1845645392767053837L;
|
||||
private String imageStoreId;
|
||||
private List<String> imageStoreIds;
|
||||
private String personId;
|
||||
private String name;
|
||||
private List<String> personIds;
|
||||
private List<String> labelIds;
|
||||
private List<String> organizationIds;
|
||||
private Integer ageStart;
|
||||
private Integer ageEnd;
|
||||
private Long groupTimeStart;
|
||||
private Long groupTimeEnd;
|
||||
private Integer isElevator;
|
||||
private List<String> delPersonIds;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getDelPersonIds() {
|
||||
return this.delPersonIds;
|
||||
}
|
||||
|
||||
public void setDelPersonIds(List<String> delPersonIds) {
|
||||
this.delPersonIds = delPersonIds;
|
||||
}
|
||||
|
||||
public Integer getIsElevator() {
|
||||
return this.isElevator;
|
||||
}
|
||||
|
||||
public void setIsElevator(Integer isElevator) {
|
||||
this.isElevator = isElevator;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
|
||||
public List<String> getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(List<String> organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public Integer getAgeStart() {
|
||||
return this.ageStart;
|
||||
}
|
||||
|
||||
public void setAgeStart(Integer ageStart) {
|
||||
this.ageStart = ageStart;
|
||||
}
|
||||
|
||||
public Integer getAgeEnd() {
|
||||
return this.ageEnd;
|
||||
}
|
||||
|
||||
public void setAgeEnd(Integer ageEnd) {
|
||||
this.ageEnd = ageEnd;
|
||||
}
|
||||
|
||||
public Long getGroupTimeStart() {
|
||||
return this.groupTimeStart;
|
||||
}
|
||||
|
||||
public void setGroupTimeStart(Long groupTimeStart) {
|
||||
this.groupTimeStart = groupTimeStart;
|
||||
}
|
||||
|
||||
public Long getGroupTimeEnd() {
|
||||
return this.groupTimeEnd;
|
||||
}
|
||||
|
||||
public void setGroupTimeEnd(Long groupTimeEnd) {
|
||||
this.groupTimeEnd = groupTimeEnd;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
}
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImageStorePersonSaveParam implements Serializable {
|
||||
private static final long serialVersionUID = 5628244051985256505L;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private String name;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private String comparePicture;
|
||||
private String imageBase64;
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
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 getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture;
|
||||
}
|
||||
|
||||
public String getImageBase64() {
|
||||
return this.imageBase64;
|
||||
}
|
||||
|
||||
public void setImageBase64(String imageBase64) {
|
||||
this.imageBase64 = imageBase64;
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStoreQueryParam extends CloudwalkBasePageForm {
|
||||
private static final long serialVersionUID = 4877153715503098703L;
|
||||
private List<String> ids;
|
||||
private List<String> personIds;
|
||||
private List<String> imageIds;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private String businessId;
|
||||
private String applicationId;
|
||||
private List<String> applicationIds;
|
||||
private List<String> businessIds;
|
||||
private String orgId;
|
||||
private List<String> orgIds;
|
||||
private String sourceApplicationId;
|
||||
private List<String> labelIds;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public List<String> getImageIds() {
|
||||
return this.imageIds;
|
||||
}
|
||||
|
||||
public void setImageIds(List<String> imageIds) {
|
||||
this.imageIds = imageIds;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getApplicationIds() {
|
||||
return this.applicationIds;
|
||||
}
|
||||
|
||||
public void setApplicationIds(List<String> applicationIds) {
|
||||
this.applicationIds = applicationIds;
|
||||
}
|
||||
|
||||
public List<String> getBusinessIds() {
|
||||
return this.businessIds;
|
||||
}
|
||||
|
||||
public void setBusinessIds(List<String> businessIds) {
|
||||
this.businessIds = businessIds;
|
||||
}
|
||||
|
||||
public String getSourceApplicationId() {
|
||||
return this.sourceApplicationId;
|
||||
}
|
||||
|
||||
public void setSourceApplicationId(String sourceApplicationId) {
|
||||
this.sourceApplicationId = sourceApplicationId;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
}
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
public class QueryDevicePersonSyncLogParam extends CloudwalkBasePageForm {
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
private Integer status;
|
||||
private String personName;
|
||||
private Integer personStatus;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public Integer getPersonStatus() {
|
||||
return this.personStatus;
|
||||
}
|
||||
|
||||
public void setPersonStatus(Integer personStatus) {
|
||||
this.personStatus = personStatus;
|
||||
}
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
public class QueryDevicePersonSyncParam extends CloudwalkBasePageForm {
|
||||
private String businessId;
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class UpdateGroupPersonRefParam {
|
||||
private String businessId;
|
||||
private String imageStoreId;
|
||||
private List<String> personIds;
|
||||
private List<String> organizationIds;
|
||||
private List<String> labelIds;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public List<String> getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(List<String> organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
}
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class DeviceImageStoreReSyncResult implements Serializable {
|
||||
private static final long serialVersionUID = 6504084839698933548L;
|
||||
private String deviceId;
|
||||
private List<String> imageStoreIds;
|
||||
private String code;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
public class DevicePersonResyncResult {
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private String code;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DevicePersonSyncDetailResult implements Serializable {
|
||||
private String imageStoreId;
|
||||
private String imageStoreName;
|
||||
private int validCount;
|
||||
private int failureCount;
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageStoreName() {
|
||||
return this.imageStoreName;
|
||||
}
|
||||
|
||||
public void setImageStoreName(String imageStoreName) {
|
||||
this.imageStoreName = imageStoreName;
|
||||
}
|
||||
|
||||
public int getValidCount() {
|
||||
return this.validCount;
|
||||
}
|
||||
|
||||
public void setValidCount(int validCount) {
|
||||
this.validCount = validCount;
|
||||
}
|
||||
|
||||
public int getFailureCount() {
|
||||
return this.failureCount;
|
||||
}
|
||||
|
||||
public void setFailureCount(int failureCount) {
|
||||
this.failureCount = failureCount;
|
||||
}
|
||||
}
|
||||
+121
@@ -0,0 +1,121 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
public class DevicePersonSyncLogResult {
|
||||
private String deviceId;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private String imageUrl;
|
||||
private String imageStoreId;
|
||||
private String imageStoreName;
|
||||
private Integer status;
|
||||
private String errorMessage;
|
||||
private long lastUpdateTime;
|
||||
private Integer personStatus;
|
||||
private int validStatus;
|
||||
private Long lastPullTime;
|
||||
private Long lastReportTime;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getImageUrl() {
|
||||
return this.imageUrl;
|
||||
}
|
||||
|
||||
public void setImageUrl(String imageUrl) {
|
||||
this.imageUrl = imageUrl;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageStoreName() {
|
||||
return this.imageStoreName;
|
||||
}
|
||||
|
||||
public void setImageStoreName(String imageStoreName) {
|
||||
this.imageStoreName = imageStoreName;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Integer getPersonStatus() {
|
||||
return this.personStatus;
|
||||
}
|
||||
|
||||
public void setPersonStatus(Integer personStatus) {
|
||||
this.personStatus = personStatus;
|
||||
}
|
||||
|
||||
public int getValidStatus() {
|
||||
return this.validStatus;
|
||||
}
|
||||
|
||||
public void setValidStatus(int validStatus) {
|
||||
this.validStatus = validStatus;
|
||||
}
|
||||
|
||||
public Long getLastPullTime() {
|
||||
return this.lastPullTime;
|
||||
}
|
||||
|
||||
public void setLastPullTime(Long lastPullTime) {
|
||||
this.lastPullTime = lastPullTime;
|
||||
}
|
||||
|
||||
public Long getLastReportTime() {
|
||||
return this.lastReportTime;
|
||||
}
|
||||
|
||||
public void setLastReportTime(Long lastReportTime) {
|
||||
this.lastReportTime = lastReportTime;
|
||||
}
|
||||
}
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DevicePersonSyncResult implements Serializable {
|
||||
private String deviceId;
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
private int validCount;
|
||||
private int failureCount;
|
||||
|
||||
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 int getValidCount() {
|
||||
return this.validCount;
|
||||
}
|
||||
|
||||
public void setValidCount(int validCount) {
|
||||
this.validCount = validCount;
|
||||
}
|
||||
|
||||
public int getFailureCount() {
|
||||
return this.failureCount;
|
||||
}
|
||||
|
||||
public void setFailureCount(int failureCount) {
|
||||
this.failureCount = failureCount;
|
||||
}
|
||||
}
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.device.result.DeviceImageStoreResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.label.result.LabelResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.organization.result.OrganizationResult;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStoreDetailResult implements Serializable {
|
||||
private String id;
|
||||
private String name;
|
||||
private Integer personNum;
|
||||
private String businessName;
|
||||
private List<String> applicationNames;
|
||||
private List<OrganizationResult> includeOrganizations;
|
||||
private List<LabelResult> includeLabels;
|
||||
private List<ImgStorePersonResult> includePersons;
|
||||
private List<LabelResult> excludeLabels;
|
||||
private List<ImgStorePersonResult> excludePersons;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private List<DeviceImageStoreResult> devices;
|
||||
|
||||
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 Integer getPersonNum() {
|
||||
return this.personNum;
|
||||
}
|
||||
|
||||
public void setPersonNum(Integer personNum) {
|
||||
this.personNum = personNum;
|
||||
}
|
||||
|
||||
public String getBusinessName() {
|
||||
return this.businessName;
|
||||
}
|
||||
|
||||
public void setBusinessName(String businessName) {
|
||||
this.businessName = businessName;
|
||||
}
|
||||
|
||||
public List<String> getApplicationNames() {
|
||||
return this.applicationNames;
|
||||
}
|
||||
|
||||
public void setApplicationNames(List<String> applicationNames) {
|
||||
this.applicationNames = applicationNames;
|
||||
}
|
||||
|
||||
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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public List<OrganizationResult> getIncludeOrganizations() {
|
||||
return this.includeOrganizations;
|
||||
}
|
||||
|
||||
public void setIncludeOrganizations(List<OrganizationResult> includeOrganizations) {
|
||||
this.includeOrganizations = includeOrganizations;
|
||||
}
|
||||
|
||||
public List<LabelResult> getIncludeLabels() {
|
||||
return this.includeLabels;
|
||||
}
|
||||
|
||||
public void setIncludeLabels(List<LabelResult> includeLabels) {
|
||||
this.includeLabels = includeLabels;
|
||||
}
|
||||
|
||||
public List<ImgStorePersonResult> getIncludePersons() {
|
||||
return this.includePersons;
|
||||
}
|
||||
|
||||
public void setIncludePersons(List<ImgStorePersonResult> includePersons) {
|
||||
this.includePersons = includePersons;
|
||||
}
|
||||
|
||||
public List<LabelResult> getExcludeLabels() {
|
||||
return this.excludeLabels;
|
||||
}
|
||||
|
||||
public void setExcludeLabels(List<LabelResult> excludeLabels) {
|
||||
this.excludeLabels = excludeLabels;
|
||||
}
|
||||
|
||||
public List<ImgStorePersonResult> getExcludePersons() {
|
||||
return this.excludePersons;
|
||||
}
|
||||
|
||||
public void setExcludePersons(List<ImgStorePersonResult> excludePersons) {
|
||||
this.excludePersons = excludePersons;
|
||||
}
|
||||
|
||||
public List<DeviceImageStoreResult> getDevices() {
|
||||
return this.devices;
|
||||
}
|
||||
|
||||
public void setDevices(List<DeviceImageStoreResult> devices) {
|
||||
this.devices = devices;
|
||||
}
|
||||
}
|
||||
+194
@@ -0,0 +1,194 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.label.result.LabelResult;
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.organization.result.OrganizationResult;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStoreListResult implements Serializable {
|
||||
private static final long serialVersionUID = -4747761188572538334L;
|
||||
private String id;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private String businessId;
|
||||
private String businessName;
|
||||
private Integer personNum;
|
||||
private String applicationId;
|
||||
private List<String> businessIds;
|
||||
private List<String> applicationIds;
|
||||
private String orgId;
|
||||
private List<String> orgIds;
|
||||
private String sourceApplicationId;
|
||||
private String sourceApplicationName;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private List<OrganizationResult> includeOrganizations;
|
||||
private List<LabelResult> includeLabels;
|
||||
private List<LabelResult> excludeLabels;
|
||||
private List<ImgStorePersonResult> excludePersons;
|
||||
|
||||
public List<ImgStorePersonResult> getExcludePersons() {
|
||||
return this.excludePersons;
|
||||
}
|
||||
|
||||
public void setExcludePersons(List<ImgStorePersonResult> excludePersons) {
|
||||
this.excludePersons = excludePersons;
|
||||
}
|
||||
|
||||
public static long getSerialVersionUID() {
|
||||
return -4747761188572538334L;
|
||||
}
|
||||
|
||||
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 Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
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 getPersonNum() {
|
||||
return this.personNum;
|
||||
}
|
||||
|
||||
public void setPersonNum(Integer personNum) {
|
||||
this.personNum = personNum;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getBusinessIds() {
|
||||
return this.businessIds;
|
||||
}
|
||||
|
||||
public void setBusinessIds(List<String> businessIds) {
|
||||
this.businessIds = businessIds;
|
||||
}
|
||||
|
||||
public List<String> getApplicationIds() {
|
||||
return this.applicationIds;
|
||||
}
|
||||
|
||||
public void setApplicationIds(List<String> applicationIds) {
|
||||
this.applicationIds = applicationIds;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public String getSourceApplicationId() {
|
||||
return this.sourceApplicationId;
|
||||
}
|
||||
|
||||
public void setSourceApplicationId(String sourceApplicationId) {
|
||||
this.sourceApplicationId = sourceApplicationId;
|
||||
}
|
||||
|
||||
public String getSourceApplicationName() {
|
||||
return this.sourceApplicationName;
|
||||
}
|
||||
|
||||
public void setSourceApplicationName(String sourceApplicationName) {
|
||||
this.sourceApplicationName = sourceApplicationName;
|
||||
}
|
||||
|
||||
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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public List<OrganizationResult> getIncludeOrganizations() {
|
||||
return this.includeOrganizations;
|
||||
}
|
||||
|
||||
public void setIncludeOrganizations(List<OrganizationResult> includeOrganizations) {
|
||||
this.includeOrganizations = includeOrganizations;
|
||||
}
|
||||
|
||||
public List<LabelResult> getIncludeLabels() {
|
||||
return this.includeLabels;
|
||||
}
|
||||
|
||||
public void setIncludeLabels(List<LabelResult> includeLabels) {
|
||||
this.includeLabels = includeLabels;
|
||||
}
|
||||
|
||||
public List<LabelResult> getExcludeLabels() {
|
||||
return this.excludeLabels;
|
||||
}
|
||||
|
||||
public void setExcludeLabels(List<LabelResult> excludeLabels) {
|
||||
this.excludeLabels = excludeLabels;
|
||||
}
|
||||
}
|
||||
+134
@@ -0,0 +1,134 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStorePersonResult implements Serializable {
|
||||
private static final long serialVersionUID = -3303306203923272487L;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private String imageId;
|
||||
private String name;
|
||||
private String comparePicture;
|
||||
private Integer gender;
|
||||
private Integer age;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private Long groupTime;
|
||||
private Integer status;
|
||||
private String errorMessage;
|
||||
private String icCardNo;
|
||||
|
||||
public String getIcCardNo() {
|
||||
return this.icCardNo;
|
||||
}
|
||||
|
||||
public void setIcCardNo(String icCardNo) {
|
||||
this.icCardNo = icCardNo;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture;
|
||||
}
|
||||
|
||||
public Integer getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
public void setGender(Integer gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public Integer getAge() {
|
||||
return this.age;
|
||||
}
|
||||
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
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 Long getGroupTime() {
|
||||
return this.groupTime;
|
||||
}
|
||||
|
||||
public void setGroupTime(Long groupTime) {
|
||||
this.groupTime = groupTime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
}
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ImageStorePersonSaveResult implements Serializable {
|
||||
private static final long serialVersionUID = 678463903819122362L;
|
||||
private String personId;
|
||||
private String imageId;
|
||||
private String imageStoreId;
|
||||
private String name;
|
||||
private Integer age;
|
||||
private Integer gender;
|
||||
private String comparePicture;
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getAge() {
|
||||
return this.age;
|
||||
}
|
||||
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public Integer getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
public void setGender(Integer gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture;
|
||||
}
|
||||
}
|
||||
+152
@@ -0,0 +1,152 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImageStoreResult implements Serializable {
|
||||
private static final long serialVersionUID = -2980434001043379374L;
|
||||
private String id;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private String businessId;
|
||||
private String businessName;
|
||||
private Integer personNum;
|
||||
private String applicationId;
|
||||
private List<String> businessIds;
|
||||
private List<String> applicationIds;
|
||||
private String orgId;
|
||||
private List<String> orgIds;
|
||||
private String sourceApplicationId;
|
||||
private String sourceApplicationName;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
|
||||
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 Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getBusinessIds() {
|
||||
return this.businessIds;
|
||||
}
|
||||
|
||||
public void setBusinessIds(List<String> businessIds) {
|
||||
this.businessIds = businessIds;
|
||||
}
|
||||
|
||||
public List<String> getApplicationIds() {
|
||||
return this.applicationIds;
|
||||
}
|
||||
|
||||
public void setApplicationIds(List<String> applicationIds) {
|
||||
this.applicationIds = applicationIds;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public String getBusinessName() {
|
||||
return this.businessName;
|
||||
}
|
||||
|
||||
public void setBusinessName(String businessName) {
|
||||
this.businessName = businessName;
|
||||
}
|
||||
|
||||
public Integer getPersonNum() {
|
||||
return this.personNum;
|
||||
}
|
||||
|
||||
public void setPersonNum(Integer personNum) {
|
||||
this.personNum = personNum;
|
||||
}
|
||||
|
||||
public String getSourceApplicationId() {
|
||||
return this.sourceApplicationId;
|
||||
}
|
||||
|
||||
public void setSourceApplicationId(String sourceApplicationId) {
|
||||
this.sourceApplicationId = sourceApplicationId;
|
||||
}
|
||||
|
||||
public String getSourceApplicationName() {
|
||||
return this.sourceApplicationName;
|
||||
}
|
||||
|
||||
public void setSourceApplicationName(String sourceApplicationName) {
|
||||
this.sourceApplicationName = sourceApplicationName;
|
||||
}
|
||||
|
||||
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 List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class ImgStoreBatchBindPersonResult implements Serializable {
|
||||
private static final long serialVersionUID = 1256507948531340325L;
|
||||
private List<String> successPersonIds;
|
||||
private List<String> failPersonIds;
|
||||
|
||||
public List<String> getSuccessPersonIds() {
|
||||
return this.successPersonIds;
|
||||
}
|
||||
|
||||
public void setSuccessPersonIds(List<String> successPersonIds) {
|
||||
this.successPersonIds = successPersonIds;
|
||||
}
|
||||
|
||||
public List<String> getFailPersonIds() {
|
||||
return this.failPersonIds;
|
||||
}
|
||||
|
||||
public void setFailPersonIds(List<String> failPersonIds) {
|
||||
this.failPersonIds = failPersonIds;
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user