mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 16:30:29 +08:00
chore: 工作区反编译与 Maven/文档/脚本同步到发布分支
- artifacts/decompiled 树与相关源码变更 - maven-cw-elevator-application 业务 docs 与 package-info - scripts 下 formatter 校验与辅助脚本 - 其他子工程/接口与发布线一并纳入版本控制 Made-with: Cursor Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
This commit is contained in:
+136
-140
@@ -1,140 +1,136 @@
|
||||
/* */ 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() {
|
||||
/* 64 */ return this.loginName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLoginName(String loginName) {
|
||||
/* 68 */ this.loginName = loginName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCorpCode() {
|
||||
/* 72 */ return this.corpCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCorpCode(String corpCode) {
|
||||
/* 76 */ this.corpCode = corpCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getMultiType() {
|
||||
/* 80 */ return this.multiType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setMultiType(Integer multiType) {
|
||||
/* 84 */ this.multiType = multiType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPassword() {
|
||||
/* 88 */ return this.password;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPassword(String password) {
|
||||
/* 92 */ this.password = password;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 96 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 100 */ this.type = type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCaptchaKey() {
|
||||
/* 104 */ return this.captchaKey;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCaptchaKey(String captchaKey) {
|
||||
/* 108 */ this.captchaKey = captchaKey;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getVerifyCode() {
|
||||
/* 112 */ return this.verifyCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setVerifyCode(String verifyCode) {
|
||||
/* 116 */ this.verifyCode = verifyCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getAccessTokenExp() {
|
||||
/* 120 */ return this.accessTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAccessTokenExp(Long accessTokenExp) {
|
||||
/* 124 */ this.accessTokenExp = accessTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRefreshTokenExp() {
|
||||
/* 128 */ return this.refreshTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRefreshTokenExp(Long refreshTokenExp) {
|
||||
/* 132 */ this.refreshTokenExp = refreshTokenExp;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\account\param\AccountLoginParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+201
-205
@@ -1,205 +1,201 @@
|
||||
/* */ 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() {
|
||||
/* 89 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 93 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLoginName() {
|
||||
/* 97 */ return this.loginName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLoginName(String loginName) {
|
||||
/* 101 */ this.loginName = loginName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 105 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 109 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getTelephone() {
|
||||
/* 113 */ return this.telephone;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTelephone(String telephone) {
|
||||
/* 117 */ this.telephone = telephone;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getEmail() {
|
||||
/* 121 */ return this.email;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEmail(String email) {
|
||||
/* 125 */ this.email = email;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 129 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 133 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAccessToken() {
|
||||
/* 137 */ return this.accessToken;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAccessToken(String accessToken) {
|
||||
/* 141 */ this.accessToken = accessToken;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getAccessTokenExp() {
|
||||
/* 145 */ return this.accessTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAccessTokenExp(Long accessTokenExp) {
|
||||
/* 149 */ this.accessTokenExp = accessTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRefreshToken() {
|
||||
/* 153 */ return this.refreshToken;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRefreshToken(String refreshToken) {
|
||||
/* 157 */ this.refreshToken = refreshToken;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRefreshTokenExp() {
|
||||
/* 161 */ return this.refreshTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRefreshTokenExp(Long refreshTokenExp) {
|
||||
/* 165 */ this.refreshTokenExp = refreshTokenExp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt1() {
|
||||
/* 169 */ return this.ext1;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt1(String ext1) {
|
||||
/* 173 */ this.ext1 = ext1;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCorpCode() {
|
||||
/* 177 */ return this.corpCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCorpCode(String corpCode) {
|
||||
/* 181 */ this.corpCode = corpCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getFirstLogin() {
|
||||
/* 185 */ return this.firstLogin;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFirstLogin(Boolean firstLogin) {
|
||||
/* 189 */ this.firstLogin = firstLogin;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getEmailEnable() {
|
||||
/* 193 */ return this.emailEnable;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEmailEnable(Boolean emailEnable) {
|
||||
/* 197 */ this.emailEnable = emailEnable;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\account\result\AccountLoginResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-17
@@ -1,17 +1,13 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\account\service\AccountLoginService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+105
-109
@@ -1,109 +1,105 @@
|
||||
/* */ 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() {
|
||||
/* 57 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 61 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceId() {
|
||||
/* 65 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 69 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getUrl() {
|
||||
/* 73 */ return this.url;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setUrl(String url) {
|
||||
/* 77 */ this.url = url;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFeatureAttr() {
|
||||
/* 81 */ return this.featureAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeatureAttr(String featureAttr) {
|
||||
/* 85 */ this.featureAttr = featureAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFeature() {
|
||||
/* 89 */ return this.feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeature(String feature) {
|
||||
/* 93 */ this.feature = feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getTime() {
|
||||
/* 97 */ return this.time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTime(Long time) {
|
||||
/* 101 */ this.time = time;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\face\param\FaceAddParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 33 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceId() {
|
||||
/* 37 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 41 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\face\param\FaceRemoveParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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
-19
@@ -1,19 +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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\face\service\FaceService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.image;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImage(String image) {
|
||||
/* 33 */ this.image = image;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAlgoVersion() {
|
||||
/* 37 */ return this.algoVersion;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAlgoVersion(String algoVersion) {
|
||||
/* 41 */ this.algoVersion = algoVersion;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\feature\param\FeatureExtractParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeature(String feature) {
|
||||
/* 33 */ this.feature = feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getQualityScores() {
|
||||
/* 37 */ return this.qualityScores;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQualityScores(String qualityScores) {
|
||||
/* 41 */ this.qualityScores = qualityScores;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\feature\result\FeatureExtractResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-17
@@ -1,17 +1,13 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\feature\service\FeatureService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+75
-79
@@ -1,79 +1,75 @@
|
||||
/* */ 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() {
|
||||
/* 43 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 47 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupName() {
|
||||
/* 51 */ return this.groupName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupName(String groupName) {
|
||||
/* 55 */ this.groupName = groupName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAlgoVersion() {
|
||||
/* 59 */ return this.algoVersion;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAlgoVersion(String algoVersion) {
|
||||
/* 63 */ this.algoVersion = algoVersion;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupAttr() {
|
||||
/* 67 */ return this.groupAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupAttr(String groupAttr) {
|
||||
/* 71 */ this.groupAttr = groupAttr;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\group\param\GroupAddParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+32
-36
@@ -1,36 +1,32 @@
|
||||
/* */ 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() {
|
||||
/* 24 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 28 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\group\param\GroupGetParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+97
-101
@@ -1,101 +1,97 @@
|
||||
/* */ 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() {
|
||||
/* 49 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 53 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupName() {
|
||||
/* 57 */ return this.groupName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupName(String groupName) {
|
||||
/* 61 */ this.groupName = groupName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAlgoVersion() {
|
||||
/* 65 */ return this.algoVersion;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAlgoVersion(String algoVersion) {
|
||||
/* 69 */ this.algoVersion = algoVersion;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getSubGroupCount() {
|
||||
/* 73 */ return this.subGroupCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubGroupCount(Integer subGroupCount) {
|
||||
/* 77 */ this.subGroupCount = subGroupCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getFaceCount() {
|
||||
/* 81 */ return this.faceCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceCount(Integer faceCount) {
|
||||
/* 85 */ this.faceCount = faceCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupAttr() {
|
||||
/* 89 */ return this.groupAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupAttr(String groupAttr) {
|
||||
/* 93 */ this.groupAttr = groupAttr;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\group\result\GroupResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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
-20
@@ -1,20 +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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\group\service\GroupService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+116
-120
@@ -1,120 +1,116 @@
|
||||
/* */ 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() {
|
||||
/* 60 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 64 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getTopN() {
|
||||
/* 68 */ return this.topN;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTopN(Integer topN) {
|
||||
/* 72 */ this.topN = topN;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFeature() {
|
||||
/* 76 */ return this.feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeature(String feature) {
|
||||
/* 80 */ this.feature = feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getThresholdScore() {
|
||||
/* 84 */ return this.thresholdScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setThresholdScore(String thresholdScore) {
|
||||
/* 88 */ this.thresholdScore = thresholdScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFeatureAttr() {
|
||||
/* 92 */ return this.featureAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeatureAttr(String featureAttr) {
|
||||
/* 96 */ this.featureAttr = featureAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getbTime() {
|
||||
/* 100 */ return this.bTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setbTime(Long bTime) {
|
||||
/* 104 */ this.bTime = bTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long geteTime() {
|
||||
/* 108 */ return this.eTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void seteTime(Long eTime) {
|
||||
/* 112 */ this.eTime = eTime;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\staticdb\param\SearchMultipleParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+58
-62
@@ -1,62 +1,58 @@
|
||||
/* */ 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() {
|
||||
/* 34 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 38 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getScore() {
|
||||
/* 42 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(String score) {
|
||||
/* 46 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupId() {
|
||||
/* 50 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 54 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\staticdb\result\SearchResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-17
@@ -1,17 +1,13 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\ai\v2\staticdb\service\SearchService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 33 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 37 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 41 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\param\ApplicationImageStoreAddParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 33 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 37 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 41 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\param\ApplicationImageStoreDelParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 33 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 37 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 41 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\param\ApplicationImageStoreQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+189
-193
@@ -1,193 +1,189 @@
|
||||
/* */ 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() {
|
||||
/* 85 */ return this.serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setServiceCode(String serviceCode) {
|
||||
/* 89 */ this.serviceCode = serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 93 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 97 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getBusinessIds() {
|
||||
/* 101 */ return this.businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessIds(List<String> businessIds) {
|
||||
/* 105 */ this.businessIds = businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 109 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 113 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt1() {
|
||||
/* 117 */ return this.ext1;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt1(String ext1) {
|
||||
/* 121 */ this.ext1 = ext1;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt2() {
|
||||
/* 125 */ return this.ext2;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt2(String ext2) {
|
||||
/* 129 */ this.ext2 = ext2;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt3() {
|
||||
/* 133 */ return this.ext3;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt3(String ext3) {
|
||||
/* 137 */ this.ext3 = ext3;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCreateUserId() {
|
||||
/* 141 */ return this.createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateUserId(String createUserId) {
|
||||
/* 145 */ this.createUserId = createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLastUpdateUserId() {
|
||||
/* 149 */ return this.lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
/* 153 */ this.lastUpdateUserId = lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateBeginTime() {
|
||||
/* 157 */ return this.createBeginTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateBeginTime(Long createBeginTime) {
|
||||
/* 161 */ this.createBeginTime = createBeginTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateEndTime() {
|
||||
/* 165 */ return this.createEndTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateEndTime(Long createEndTime) {
|
||||
/* 169 */ this.createEndTime = createEndTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastUpdateBeginTime() {
|
||||
/* 173 */ return this.lastUpdateBeginTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateBeginTime(Long lastUpdateBeginTime) {
|
||||
/* 177 */ this.lastUpdateBeginTime = lastUpdateBeginTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastUpdateEndTime() {
|
||||
/* 181 */ return this.lastUpdateEndTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateEndTime(Long lastUpdateEndTime) {
|
||||
/* 185 */ this.lastUpdateEndTime = lastUpdateEndTime;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\param\SceneAppsGetParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-75
@@ -1,75 +1,71 @@
|
||||
/* */ 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() {
|
||||
/* 39 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 43 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationName() {
|
||||
/* 47 */ return this.applicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationName(String applicationName) {
|
||||
/* 51 */ this.applicationName = applicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 55 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 59 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreName() {
|
||||
/* 63 */ return this.imageStoreName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreName(String imageStoreName) {
|
||||
/* 67 */ this.imageStoreName = imageStoreName;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\result\ApplicationImageStoreResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+123
-127
@@ -1,127 +1,123 @@
|
||||
/* */ 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() {
|
||||
/* 59 */ return this.serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setServiceCode(String serviceCode) {
|
||||
/* 63 */ this.serviceCode = serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 67 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 71 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 75 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 79 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Short getStatus() {
|
||||
/* 83 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Short status) {
|
||||
/* 87 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRemark() {
|
||||
/* 91 */ return this.remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRemark(String remark) {
|
||||
/* 95 */ this.remark = remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt1() {
|
||||
/* 99 */ return this.ext1;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt1(String ext1) {
|
||||
/* 103 */ this.ext1 = ext1;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt2() {
|
||||
/* 107 */ return this.ext2;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt2(String ext2) {
|
||||
/* 111 */ this.ext2 = ext2;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getExt3() {
|
||||
/* 115 */ return this.ext3;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExt3(String ext3) {
|
||||
/* 119 */ this.ext3 = ext3;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\result\SceneAppsResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+20
-24
@@ -1,24 +1,20 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\service\ApplicationImageStoreService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+14
-18
@@ -1,18 +1,14 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\application\service\ApplicationService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.imageUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageUrl(String imageUrl) {
|
||||
/* 33 */ this.imageUrl = imageUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageBase64() {
|
||||
/* 37 */ return this.imageBase64;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageBase64(String imageBase64) {
|
||||
/* 41 */ this.imageBase64 = imageBase64;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\biology\param\FeatureExtractParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+85
-89
@@ -1,89 +1,85 @@
|
||||
/* */ 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() {
|
||||
/* 45 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 49 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getImageStoreIds() {
|
||||
/* 53 */ return this.imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
/* 57 */ this.imageStoreIds = imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageBase64() {
|
||||
/* 61 */ return this.imageBase64;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageBase64(String imageBase64) {
|
||||
/* 65 */ this.imageBase64 = imageBase64;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFeature() {
|
||||
/* 69 */ return this.feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeature(String feature) {
|
||||
/* 73 */ this.feature = feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getTopN() {
|
||||
/* 77 */ return this.topN;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTopN(Integer topN) {
|
||||
/* 81 */ this.topN = topN;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\biology\param\FeatureQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+84
-88
@@ -1,88 +1,84 @@
|
||||
/* */ 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() {
|
||||
/* 44 */ return this.feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFeature(String feature) {
|
||||
/* 48 */ this.feature = feature;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Double[] getQuality() {
|
||||
/* 52 */ return this.quality;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQuality(Double[] quality) {
|
||||
/* 56 */ this.quality = quality;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Double getScore() {
|
||||
/* 60 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(Double score) {
|
||||
/* 64 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAge() {
|
||||
/* 68 */ return this.age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAge(String age) {
|
||||
/* 72 */ this.age = age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGender() {
|
||||
/* 76 */ return this.gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGender(String gender) {
|
||||
/* 80 */ this.gender = gender;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\biology\result\FeatureExtractResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+136
-140
@@ -1,140 +1,136 @@
|
||||
/* */ 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() {
|
||||
/* 64 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 68 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageId() {
|
||||
/* 72 */ return this.imageId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageId(String imageId) {
|
||||
/* 76 */ this.imageId = imageId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 80 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 84 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 88 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 92 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getAge() {
|
||||
/* 96 */ return this.age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAge(Integer age) {
|
||||
/* 100 */ this.age = age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getGender() {
|
||||
/* 104 */ return this.gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGender(Integer gender) {
|
||||
/* 108 */ this.gender = gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Double getScore() {
|
||||
/* 112 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(Double score) {
|
||||
/* 116 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonCode() {
|
||||
/* 120 */ return this.personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonCode(String personCode) {
|
||||
/* 124 */ this.personCode = personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getComparePicture() {
|
||||
/* 128 */ return this.comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setComparePicture(String comparePicture) {
|
||||
/* 132 */ this.comparePicture = comparePicture;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\biology\result\FeatureQueryResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+21
-25
@@ -1,25 +1,21 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\biology\service\BiologyToolService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 33 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 37 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 41 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceApplicationParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 33 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 37 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 41 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceApplicationQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+46
-50
@@ -1,50 +1,46 @@
|
||||
/* */ 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() {
|
||||
/* 30 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 34 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 38 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 42 */ this.id = id;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceAreaDeleteParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+44
-48
@@ -1,48 +1,44 @@
|
||||
/* */ 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() {
|
||||
/* 28 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 32 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 36 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 40 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceAreaQueryDeviceParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+98
-102
@@ -1,102 +1,98 @@
|
||||
/* */ 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() {
|
||||
/* 50 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 54 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 58 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 62 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIds() {
|
||||
/* 66 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 70 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentId() {
|
||||
/* 74 */ return this.parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentId(String parentId) {
|
||||
/* 78 */ this.parentId = parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getParentIds() {
|
||||
/* 82 */ return this.parentIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentIds(List<String> parentIds) {
|
||||
/* 86 */ this.parentIds = parentIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 90 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 94 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceAreaQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+33
-37
@@ -1,37 +1,33 @@
|
||||
/* */ 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() {
|
||||
/* 25 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 29 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceDeleteParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+111
-115
@@ -1,115 +1,111 @@
|
||||
/* */ 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() {
|
||||
/* 55 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 59 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIds() {
|
||||
/* 63 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 67 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentId() {
|
||||
/* 71 */ return this.parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentId(String parentId) {
|
||||
/* 75 */ this.parentId = parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictCode() {
|
||||
/* 79 */ return this.districtCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictCode(String districtCode) {
|
||||
/* 83 */ this.districtCode = districtCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictName() {
|
||||
/* 87 */ return this.districtName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictName(String districtName) {
|
||||
/* 91 */ this.districtName = districtName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPath() {
|
||||
/* 95 */ return this.path;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPath(String path) {
|
||||
/* 99 */ this.path = path;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getLevel() {
|
||||
/* 103 */ return this.level;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLevel(Integer level) {
|
||||
/* 107 */ this.level = level;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceDistrictQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 33 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 37 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 41 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceImageStoreParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 33 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 37 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 41 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceImageStoreQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+46
-50
@@ -1,50 +1,46 @@
|
||||
/* */ 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() {
|
||||
/* 30 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 34 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getImageStoreIds() {
|
||||
/* 38 */ return this.imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
/* 42 */ this.imageStoreIds = imageStoreIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceImageStoreSaveParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+321
-325
@@ -1,325 +1,321 @@
|
||||
/* */ 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() {
|
||||
/* 137 */ return this.deviceIp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceIp(String deviceIp) {
|
||||
/* 141 */ this.deviceIp = deviceIp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getOrder() {
|
||||
/* 145 */ return this.order;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrder(Integer order) {
|
||||
/* 149 */ this.order = order;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 153 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 157 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIds() {
|
||||
/* 161 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 165 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 169 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 173 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 177 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 181 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeId() {
|
||||
/* 185 */ return this.deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 189 */ this.deviceTypeId = deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDeviceTypeIds() {
|
||||
/* 193 */ return this.deviceTypeIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeIds(List<String> deviceTypeIds) {
|
||||
/* 197 */ this.deviceTypeIds = deviceTypeIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeCategoryId() {
|
||||
/* 201 */ return this.deviceTypeCategoryId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeCategoryId(String deviceTypeCategoryId) {
|
||||
/* 205 */ this.deviceTypeCategoryId = deviceTypeCategoryId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeCode() {
|
||||
/* 209 */ return this.deviceTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
/* 213 */ this.deviceTypeCode = deviceTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDeviceTypeCodes() {
|
||||
/* 217 */ return this.deviceTypeCodes;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeCodes(List<String> deviceTypeCodes) {
|
||||
/* 221 */ this.deviceTypeCodes = deviceTypeCodes;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateTimeBegin() {
|
||||
/* 225 */ return this.createTimeBegin;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateTimeBegin(Long createTimeBegin) {
|
||||
/* 229 */ this.createTimeBegin = createTimeBegin;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 233 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 237 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDeviceCodes() {
|
||||
/* 241 */ return this.deviceCodes;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCodes(List<String> deviceCodes) {
|
||||
/* 245 */ this.deviceCodes = deviceCodes;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 249 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 253 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDistrictIds() {
|
||||
/* 257 */ return this.districtIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictIds(List<String> districtIds) {
|
||||
/* 261 */ this.districtIds = districtIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDistrictPath() {
|
||||
/* 265 */ return this.districtPath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictPath(List<String> districtPath) {
|
||||
/* 269 */ this.districtPath = districtPath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getAreaIds() {
|
||||
/* 273 */ return this.areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaIds(List<String> areaIds) {
|
||||
/* 277 */ this.areaIds = areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 281 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 285 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getApplicationIds() {
|
||||
/* 289 */ return this.applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationIds(List<String> applicationIds) {
|
||||
/* 293 */ this.applicationIds = applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 297 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 301 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getOrgIds() {
|
||||
/* 305 */ return this.orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgIds(List<String> orgIds) {
|
||||
/* 309 */ this.orgIds = orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getOnlineStatus() {
|
||||
/* 313 */ return this.onlineStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOnlineStatus(Integer onlineStatus) {
|
||||
/* 317 */ this.onlineStatus = onlineStatus;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+33
-37
@@ -1,37 +1,33 @@
|
||||
/* */ 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() {
|
||||
/* 25 */ return this.deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceIds(List<String> deviceIds) {
|
||||
/* 29 */ this.deviceIds = deviceIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceSettingInitParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+147
-151
@@ -1,151 +1,147 @@
|
||||
/* */ 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() {
|
||||
/* 74 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 78 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValue() {
|
||||
/* 82 */ return this.value;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValue(String value) {
|
||||
/* 86 */ this.value = value;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRemark() {
|
||||
/* 90 */ return this.remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRemark(String remark) {
|
||||
/* 94 */ this.remark = remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<SettingAttr> getChild() {
|
||||
/* 98 */ return this.child;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setChild(List<SettingAttr> child) {
|
||||
/* 102 */ this.child = child;
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 107 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 111 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getSubDeviceIds() {
|
||||
/* 115 */ return this.subDeviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceIds(List<String> subDeviceIds) {
|
||||
/* 119 */ this.subDeviceIds = subDeviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 123 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 127 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getReserveInfo() {
|
||||
/* 131 */ return this.reserveInfo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setReserveInfo(String reserveInfo) {
|
||||
/* 135 */ this.reserveInfo = reserveInfo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<SettingAttr> getSetttingAttr() {
|
||||
/* 139 */ return this.setttingAttr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSetttingAttr(List<SettingAttr> setttingAttr) {
|
||||
/* 143 */ this.setttingAttr = setttingAttr;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceSettingNotifyParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+46
-50
@@ -1,50 +1,46 @@
|
||||
/* */ 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() {
|
||||
/* 30 */ return this.deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceIds(List<String> deviceIds) {
|
||||
/* 34 */ this.deviceIds = deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Short getHasDefault() {
|
||||
/* 38 */ return this.hasDefault;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setHasDefault(Short hasDefault) {
|
||||
/* 42 */ this.hasDefault = hasDefault;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceSettingQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+32
-36
@@ -1,36 +1,32 @@
|
||||
/* */ 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() {
|
||||
/* 24 */ return this.vendorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setVendorId(String vendorId) {
|
||||
/* 28 */ this.vendorId = vendorId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\DeviceTypeQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+90
-94
@@ -1,94 +1,90 @@
|
||||
/* */ 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() {
|
||||
/* 50 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 54 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getSubDeviceIds() {
|
||||
/* 58 */ return this.subDeviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceIds(List<String> subDeviceIds) {
|
||||
/* 62 */ this.subDeviceIds = subDeviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 66 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 70 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getReserveInfo() {
|
||||
/* 74 */ return this.reserveInfo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setReserveInfo(String reserveInfo) {
|
||||
/* 78 */ this.reserveInfo = reserveInfo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getGuardSwitch() {
|
||||
/* 82 */ return this.guardSwitch;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGuardSwitch(Integer guardSwitch) {
|
||||
/* 86 */ this.guardSwitch = guardSwitch;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\param\EntranceGuardControlParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+84
-88
@@ -1,88 +1,84 @@
|
||||
/* */ 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() {
|
||||
/* 44 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 48 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 52 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 56 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 60 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 64 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationName() {
|
||||
/* 68 */ return this.applicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationName(String applicationName) {
|
||||
/* 72 */ this.applicationName = applicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getServiceCode() {
|
||||
/* 76 */ return this.serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setServiceCode(String serviceCode) {
|
||||
/* 80 */ this.serviceCode = serviceCode;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceApplicationResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+110
-114
@@ -1,114 +1,110 @@
|
||||
/* */ 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() {
|
||||
/* 54 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 58 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 62 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 66 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCode() {
|
||||
/* 70 */ return this.code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCode(String code) {
|
||||
/* 74 */ this.code = code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 78 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 82 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getOrderBy() {
|
||||
/* 86 */ return this.orderBy;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrderBy(Integer orderBy) {
|
||||
/* 90 */ this.orderBy = orderBy;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentId() {
|
||||
/* 94 */ return this.parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentId(String parentId) {
|
||||
/* 98 */ this.parentId = parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getLevel() {
|
||||
/* 102 */ return this.level;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLevel(Integer level) {
|
||||
/* 106 */ this.level = level;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceAreaResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+110
-114
@@ -1,114 +1,110 @@
|
||||
/* */ 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() {
|
||||
/* 54 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 58 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictCode() {
|
||||
/* 62 */ return this.districtCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictCode(String districtCode) {
|
||||
/* 66 */ this.districtCode = districtCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictName() {
|
||||
/* 70 */ return this.districtName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictName(String districtName) {
|
||||
/* 74 */ this.districtName = districtName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getLevel() {
|
||||
/* 78 */ return this.level;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLevel(Integer level) {
|
||||
/* 82 */ this.level = level;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentId() {
|
||||
/* 86 */ return this.parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentId(String parentId) {
|
||||
/* 90 */ this.parentId = parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getMergeName() {
|
||||
/* 94 */ return this.mergeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setMergeName(String mergeName) {
|
||||
/* 98 */ this.mergeName = mergeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPath() {
|
||||
/* 102 */ return this.path;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPath(String path) {
|
||||
/* 106 */ this.path = path;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceDistrictResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-75
@@ -1,75 +1,71 @@
|
||||
/* */ 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() {
|
||||
/* 39 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 43 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 47 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 51 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 55 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 59 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreName() {
|
||||
/* 63 */ return this.imageStoreName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreName(String imageStoreName) {
|
||||
/* 67 */ this.imageStoreName = imageStoreName;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceImageStoreResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+475
-479
@@ -1,479 +1,475 @@
|
||||
/* */ 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() {
|
||||
/* 195 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 199 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateTime() {
|
||||
/* 203 */ return this.createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateTime(Long createTime) {
|
||||
/* 207 */ this.createTime = createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCreateUserId() {
|
||||
/* 211 */ return this.createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateUserId(String createUserId) {
|
||||
/* 215 */ this.createUserId = createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastUpdateTime() {
|
||||
/* 219 */ return this.lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
/* 223 */ this.lastUpdateTime = lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLastUpdateUserId() {
|
||||
/* 227 */ return this.lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
/* 231 */ this.lastUpdateUserId = lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 235 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 239 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeId() {
|
||||
/* 243 */ return this.deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 247 */ this.deviceTypeId = deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeCode() {
|
||||
/* 251 */ return this.deviceTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
/* 255 */ this.deviceTypeCode = deviceTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeIdTree() {
|
||||
/* 259 */ return this.deviceTypeIdTree;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeIdTree(String deviceTypeIdTree) {
|
||||
/* 263 */ this.deviceTypeIdTree = deviceTypeIdTree;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 267 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 271 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 275 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 279 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getStatus() {
|
||||
/* 283 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(String status) {
|
||||
/* 287 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOnlineStatus() {
|
||||
/* 291 */ return this.onlineStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOnlineStatus(String onlineStatus) {
|
||||
/* 295 */ this.onlineStatus = onlineStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastHeartbeatTime() {
|
||||
/* 299 */ return this.lastHeartbeatTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastHeartbeatTime(Long lastHeartbeatTime) {
|
||||
/* 303 */ this.lastHeartbeatTime = lastHeartbeatTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLongitude() {
|
||||
/* 307 */ return this.longitude;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLongitude(String longitude) {
|
||||
/* 311 */ this.longitude = longitude;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLatitude() {
|
||||
/* 315 */ return this.latitude;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLatitude(String latitude) {
|
||||
/* 319 */ this.latitude = latitude;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCameraUserName() {
|
||||
/* 323 */ return this.cameraUserName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCameraUserName(String cameraUserName) {
|
||||
/* 327 */ this.cameraUserName = cameraUserName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCameraPassword() {
|
||||
/* 331 */ return this.cameraPassword;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCameraPassword(String cameraPassword) {
|
||||
/* 335 */ this.cameraPassword = cameraPassword;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCameraMainRtspUrl() {
|
||||
/* 339 */ return this.cameraMainRtspUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCameraMainRtspUrl(String cameraMainRtspUrl) {
|
||||
/* 343 */ this.cameraMainRtspUrl = cameraMainRtspUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCameraVmsRtspUrl() {
|
||||
/* 347 */ return this.cameraVmsRtspUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCameraVmsRtspUrl(String cameraVmsRtspUrl) {
|
||||
/* 351 */ this.cameraVmsRtspUrl = cameraVmsRtspUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getProtocol() {
|
||||
/* 355 */ return this.protocol;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setProtocol(String protocol) {
|
||||
/* 359 */ this.protocol = protocol;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 363 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 367 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictName() {
|
||||
/* 371 */ return this.districtName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictName(String districtName) {
|
||||
/* 375 */ this.districtName = districtName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictPath() {
|
||||
/* 379 */ return this.districtPath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictPath(String districtPath) {
|
||||
/* 383 */ this.districtPath = districtPath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictMergeName() {
|
||||
/* 387 */ return this.districtMergeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictMergeName(String districtMergeName) {
|
||||
/* 391 */ this.districtMergeName = districtMergeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 395 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 399 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaName() {
|
||||
/* 403 */ return this.areaName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaName(String areaName) {
|
||||
/* 407 */ this.areaName = areaName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaAddr() {
|
||||
/* 411 */ return this.areaAddr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaAddr(String areaAddr) {
|
||||
/* 415 */ this.areaAddr = areaAddr;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getIdentifyType() {
|
||||
/* 419 */ return this.identifyType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIdentifyType(int identifyType) {
|
||||
/* 423 */ this.identifyType = identifyType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getIsAutoSync() {
|
||||
/* 427 */ return this.isAutoSync;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsAutoSync(int isAutoSync) {
|
||||
/* 431 */ this.isAutoSync = isAutoSync;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSnapshotProtocol() {
|
||||
/* 435 */ return this.snapshotProtocol;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSnapshotProtocol(String snapshotProtocol) {
|
||||
/* 439 */ this.snapshotProtocol = snapshotProtocol;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRemark() {
|
||||
/* 443 */ return this.remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRemark(String remark) {
|
||||
/* 447 */ this.remark = remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceNetworkIp() {
|
||||
/* 451 */ return this.deviceNetworkIp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceNetworkIp(String deviceNetworkIp) {
|
||||
/* 455 */ this.deviceNetworkIp = deviceNetworkIp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCameraIp() {
|
||||
/* 459 */ return this.cameraIp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCameraIp(String cameraIp) {
|
||||
/* 463 */ this.cameraIp = cameraIp;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeCategoryId() {
|
||||
/* 467 */ return this.deviceTypeCategoryId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeCategoryId(String deviceTypeCategoryId) {
|
||||
/* 471 */ this.deviceTypeCategoryId = deviceTypeCategoryId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+155
-159
@@ -1,159 +1,155 @@
|
||||
/* */ 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() {
|
||||
/* 35 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 39 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getHasSucess() {
|
||||
/* 43 */ return this.hasSucess;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setHasSucess(Boolean hasSucess) {
|
||||
/* 47 */ this.hasSucess = hasSucess;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<DeviceSettings> getSettings() {
|
||||
/* 51 */ return this.settings;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettings(List<DeviceSettings> settings) {
|
||||
/* 55 */ 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() {
|
||||
/* 98 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 102 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrName() {
|
||||
/* 106 */ return this.settingAttrName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrName(String settingAttrName) {
|
||||
/* 110 */ this.settingAttrName = settingAttrName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrValue() {
|
||||
/* 114 */ return this.settingAttrValue;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrValue(String settingAttrValue) {
|
||||
/* 118 */ this.settingAttrValue = settingAttrValue;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrRemark() {
|
||||
/* 122 */ return this.settingAttrRemark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrRemark(String settingAttrRemark) {
|
||||
/* 126 */ this.settingAttrRemark = settingAttrRemark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrCode() {
|
||||
/* 130 */ return this.settingAttrCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrCode(String settingAttrCode) {
|
||||
/* 134 */ this.settingAttrCode = settingAttrCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingParentId() {
|
||||
/* 138 */ return this.settingParentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingParentId(String settingParentId) {
|
||||
/* 142 */ this.settingParentId = settingParentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<DeviceSettings> getChild() {
|
||||
/* 146 */ return this.child;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setChild(List<DeviceSettings> child) {
|
||||
/* 150 */ this.child = child;
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceSettingInitResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+58
-62
@@ -1,62 +1,58 @@
|
||||
/* */ 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() {
|
||||
/* 34 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 38 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 42 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 46 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getReserveInfo() {
|
||||
/* 50 */ return this.reserveInfo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setReserveInfo(String reserveInfo) {
|
||||
/* 54 */ this.reserveInfo = reserveInfo;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceSettingNotifyResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+155
-159
@@ -1,159 +1,155 @@
|
||||
/* */ 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() {
|
||||
/* 30 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 34 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<DeviceSettings> getSettings() {
|
||||
/* 38 */ return this.settings;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettings(List<DeviceSettings> settings) {
|
||||
/* 42 */ 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() {
|
||||
/* 90 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 94 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrName() {
|
||||
/* 98 */ return this.settingAttrName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrName(String settingAttrName) {
|
||||
/* 102 */ this.settingAttrName = settingAttrName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrValue() {
|
||||
/* 106 */ return this.settingAttrValue;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrValue(String settingAttrValue) {
|
||||
/* 110 */ this.settingAttrValue = settingAttrValue;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrRemark() {
|
||||
/* 114 */ return this.settingAttrRemark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrRemark(String settingAttrRemark) {
|
||||
/* 118 */ this.settingAttrRemark = settingAttrRemark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrCode() {
|
||||
/* 122 */ return this.settingAttrCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrCode(String settingAttrCode) {
|
||||
/* 126 */ this.settingAttrCode = settingAttrCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingAttrDisplay() {
|
||||
/* 130 */ return this.settingAttrDisplay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingAttrDisplay(String settingAttrDisplay) {
|
||||
/* 134 */ this.settingAttrDisplay = settingAttrDisplay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSettingParentId() {
|
||||
/* 138 */ return this.settingParentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSettingParentId(String settingParentId) {
|
||||
/* 142 */ this.settingParentId = settingParentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<DeviceSettings> getChild() {
|
||||
/* 146 */ return this.child;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setChild(List<DeviceSettings> child) {
|
||||
/* 150 */ this.child = child;
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceSettingResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+75
-79
@@ -1,79 +1,75 @@
|
||||
/* */ 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() {
|
||||
/* 38 */ return this.total;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTotal(String total) {
|
||||
/* 42 */ this.total = total;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOnlineTotal() {
|
||||
/* 46 */ return this.onlineTotal;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOnlineTotal(String onlineTotal) {
|
||||
/* 50 */ this.onlineTotal = onlineTotal;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOfflineTotal() {
|
||||
/* 54 */ return this.offlineTotal;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOfflineTotal(String offlineTotal) {
|
||||
/* 58 */ this.offlineTotal = offlineTotal;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAlarmTotal() {
|
||||
/* 62 */ return this.alarmTotal;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAlarmTotal(String alarmTotal) {
|
||||
/* 66 */ this.alarmTotal = alarmTotal;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 71 */ return "AcsDeviceStatusResult{total='" + this.total + '\'' + ", onlineTotal='" + this.onlineTotal + '\'' + ", offlineTotal='" + this.offlineTotal + '\'' + ", alarmTotal='" + this.alarmTotal + '\'' + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceStatusResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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 + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+117
-121
@@ -1,121 +1,117 @@
|
||||
/* */ 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() {
|
||||
/* 36 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 40 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 44 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 48 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<DeviceTypeDetailResult> getChildren() {
|
||||
/* 52 */ return this.children;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setChildren(List<DeviceTypeDetailResult> children) {
|
||||
/* 56 */ 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() {
|
||||
/* 84 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 88 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeCode() {
|
||||
/* 92 */ return this.deviceTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
/* 96 */ this.deviceTypeCode = deviceTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getIfThirdParty() {
|
||||
/* 100 */ return this.ifThirdParty;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIfThirdParty(Boolean ifThirdParty) {
|
||||
/* 104 */ this.ifThirdParty = ifThirdParty;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 108 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 112 */ this.name = name;
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\DeviceTypeResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+58
-62
@@ -1,62 +1,58 @@
|
||||
/* */ 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() {
|
||||
/* 34 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 38 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 42 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 46 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getReserveInfo() {
|
||||
/* 50 */ return this.reserveInfo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setReserveInfo(String reserveInfo) {
|
||||
/* 54 */ this.reserveInfo = reserveInfo;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\result\EntranceGuardControlResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+19
-23
@@ -1,23 +1,19 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceApplicationService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+16
-20
@@ -1,20 +1,16 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceAreaService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-17
@@ -1,17 +1,13 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceDistrictService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+25
-29
@@ -1,29 +1,25 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceImageStoreService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-17
@@ -1,17 +1,13 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceKitService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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
-20
@@ -1,20 +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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceNotifyService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+25
-29
@@ -1,29 +1,25 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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
-21
@@ -1,21 +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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceSettingService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+13
-17
@@ -1,17 +1,13 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\device\service\DeviceTypeService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+85
-89
@@ -1,89 +1,85 @@
|
||||
/* */ 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() {
|
||||
/* 45 */ return this.floorIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFloorIds(List<String> floorIds) {
|
||||
/* 49 */ this.floorIds = floorIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getVisitorId() {
|
||||
/* 53 */ return this.visitorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setVisitorId(String visitorId) {
|
||||
/* 57 */ this.visitorId = visitorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 61 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 65 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getBegVisitorTime() {
|
||||
/* 69 */ return this.begVisitorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBegVisitorTime(Long begVisitorTime) {
|
||||
/* 73 */ this.begVisitorTime = begVisitorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndVisitorTime() {
|
||||
/* 77 */ return this.endVisitorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndVisitorTime(Long endVisitorTime) {
|
||||
/* 81 */ this.endVisitorTime = endVisitorTime;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\elevator\param\AcsPersonAddVisitorParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-16
@@ -1,16 +1,12 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\elevator\service\ElevatorPersonService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+71
-75
@@ -1,75 +1,71 @@
|
||||
/* */ 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() {
|
||||
/* 39 */ return this.serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setServiceCode(String serviceCode) {
|
||||
/* 43 */ this.serviceCode = serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getEmail() {
|
||||
/* 47 */ return this.email;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEmail(String email) {
|
||||
/* 51 */ this.email = email;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getTitle() {
|
||||
/* 55 */ return this.title;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTitle(String title) {
|
||||
/* 59 */ this.title = title;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getContent() {
|
||||
/* 63 */ return this.content;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setContent(String content) {
|
||||
/* 67 */ this.content = content;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\email\param\EmailSendParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-16
@@ -1,16 +1,12 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\email\service\EmailSendService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+79
-83
@@ -1,83 +1,79 @@
|
||||
/* */ 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() {
|
||||
/* 31 */ return this.fileId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileId(String fileId) {
|
||||
/* 35 */ this.fileId = fileId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getFileSize() {
|
||||
/* 39 */ return this.fileSize;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileSize(Long fileSize) {
|
||||
/* 43 */ this.fileSize = fileSize;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFilePath() {
|
||||
/* 47 */ return this.filePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFilePath(String filePath) {
|
||||
/* 51 */ this.filePath = filePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getFileStatus() {
|
||||
/* 55 */ return this.fileStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileStatus(Integer fileStatus) {
|
||||
/* 59 */ this.fileStatus = fileStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getErrorCode() {
|
||||
/* 63 */ return this.errorCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setErrorCode(String errorCode) {
|
||||
/* 67 */ this.errorCode = errorCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getErrorMessage() {
|
||||
/* 71 */ return this.errorMessage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setErrorMessage(String errorMessage) {
|
||||
/* 75 */ this.errorMessage = errorMessage;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\file\param\FileFinishParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+19
-23
@@ -1,23 +1,19 @@
|
||||
/* */ package cn.cloudwalk.client.cwoscomponent.intelligent.file.param;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class FileGetParam
|
||||
/* */ {
|
||||
/* */ private String fileId;
|
||||
/* */
|
||||
/* */ public String getFileId() {
|
||||
/* 11 */ return this.fileId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileId(String fileId) {
|
||||
/* 15 */ this.fileId = fileId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\file\param\FileGetParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+32
-36
@@ -1,36 +1,32 @@
|
||||
/* */ package cn.cloudwalk.client.cwoscomponent.intelligent.file.param;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class FileInitParam
|
||||
/* */ {
|
||||
/* */ private String fileName;
|
||||
/* */ private String applicationId;
|
||||
/* */
|
||||
/* */ public String getFileName() {
|
||||
/* 16 */ return this.fileName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileName(String fileName) {
|
||||
/* 20 */ this.fileName = fileName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 24 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 28 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\file\param\FileInitParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+235
-239
@@ -1,239 +1,235 @@
|
||||
/* */ 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() {
|
||||
/* 83 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 87 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 91 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 95 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFileName() {
|
||||
/* 99 */ return this.fileName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileName(String fileName) {
|
||||
/* 103 */ this.fileName = fileName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFilePath() {
|
||||
/* 107 */ return this.filePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFilePath(String filePath) {
|
||||
/* 111 */ this.filePath = filePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getFileSize() {
|
||||
/* 115 */ return this.fileSize;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileSize(Long fileSize) {
|
||||
/* 119 */ this.fileSize = fileSize;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getServiceCode() {
|
||||
/* 123 */ return this.serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setServiceCode(String serviceCode) {
|
||||
/* 127 */ this.serviceCode = serviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getServiceName() {
|
||||
/* 131 */ return this.serviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setServiceName(String serviceName) {
|
||||
/* 135 */ this.serviceName = serviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 139 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 143 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 147 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 151 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 155 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 159 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getReadStatus() {
|
||||
/* 163 */ return this.readStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setReadStatus(Integer readStatus) {
|
||||
/* 167 */ this.readStatus = readStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateTime() {
|
||||
/* 171 */ return this.createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateTime(Long createTime) {
|
||||
/* 175 */ this.createTime = createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCreateUserId() {
|
||||
/* 179 */ return this.createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateUserId(String createUserId) {
|
||||
/* 183 */ this.createUserId = createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastUpdateTime() {
|
||||
/* 187 */ return this.lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
/* 191 */ this.lastUpdateTime = lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLastUpdateUserId() {
|
||||
/* 195 */ return this.lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
/* 199 */ this.lastUpdateUserId = lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFileAddress() {
|
||||
/* 203 */ return this.fileAddress;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFileAddress(String fileAddress) {
|
||||
/* 207 */ this.fileAddress = fileAddress;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCreateUserName() {
|
||||
/* 211 */ return this.createUserName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateUserName(String createUserName) {
|
||||
/* 215 */ this.createUserName = createUserName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getErrorCode() {
|
||||
/* 219 */ return this.errorCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setErrorCode(String errorCode) {
|
||||
/* 223 */ this.errorCode = errorCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getErrorMessage() {
|
||||
/* 227 */ return this.errorMessage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setErrorMessage(String errorMessage) {
|
||||
/* 231 */ this.errorMessage = errorMessage;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\file\result\FileDetail.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+19
-23
@@ -1,23 +1,19 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\file\service\FileService.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+53
-57
@@ -1,57 +1,53 @@
|
||||
/* */ package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class DevicePersonResyncParam
|
||||
/* */ {
|
||||
/* */ private String deviceId;
|
||||
/* */ private String imageStoreId;
|
||||
/* */ private String personId;
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 29 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 33 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 37 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 41 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 45 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 49 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\DevicePersonResyncParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+27
-31
@@ -1,31 +1,27 @@
|
||||
/* */ package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.param;
|
||||
/* */
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class DevicePersonResyncRequestParam
|
||||
/* */ {
|
||||
/* */ private List<DevicePersonResyncParam> data;
|
||||
/* */
|
||||
/* */ public List<DevicePersonResyncParam> getData() {
|
||||
/* 19 */ return this.data;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setData(List<DevicePersonResyncParam> data) {
|
||||
/* 23 */ this.data = data;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\DevicePersonResyncRequestParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+189
-193
@@ -1,193 +1,189 @@
|
||||
/* */ 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() {
|
||||
/* 85 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 89 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 93 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 97 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Short getType() {
|
||||
/* 101 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Short type) {
|
||||
/* 105 */ this.type = type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSourceApplicationId() {
|
||||
/* 109 */ return this.sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSourceApplicationId(String sourceApplicationId) {
|
||||
/* 113 */ this.sourceApplicationId = sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeOrganizations() {
|
||||
/* 117 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
/* 121 */ this.includeOrganizations = includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeLabels() {
|
||||
/* 125 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeLabels(List<String> includeLabels) {
|
||||
/* 129 */ this.includeLabels = includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<ImageStorePersonData> getIncludePersons() {
|
||||
/* 133 */ return this.includePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludePersons(List<ImageStorePersonData> includePersons) {
|
||||
/* 137 */ this.includePersons = includePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getExcludeLabels() {
|
||||
/* 141 */ return this.excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludeLabels(List<String> excludeLabels) {
|
||||
/* 145 */ this.excludeLabels = excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getExcludePersons() {
|
||||
/* 149 */ return this.excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludePersons(List<String> excludePersons) {
|
||||
/* 153 */ this.excludePersons = excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 157 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 161 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 165 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 169 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 173 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 177 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getNullDateIsLongTerm() {
|
||||
/* 181 */ return this.nullDateIsLongTerm;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setNullDateIsLongTerm(Boolean nullDateIsLongTerm) {
|
||||
/* 185 */ this.nullDateIsLongTerm = nullDateIsLongTerm;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStoreAddParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+42
-46
@@ -1,46 +1,42 @@
|
||||
/* */ 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() {
|
||||
/* 26 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 30 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 34 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 38 */ this.id = id;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStoreDelParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+176
-180
@@ -1,180 +1,176 @@
|
||||
/* */ 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() {
|
||||
/* 80 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 84 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 88 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 92 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 96 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 100 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeOrganizations() {
|
||||
/* 104 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
/* 108 */ this.includeOrganizations = includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeLabels() {
|
||||
/* 112 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeLabels(List<String> includeLabels) {
|
||||
/* 116 */ this.includeLabels = includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<ImageStorePersonData> getIncludePersons() {
|
||||
/* 120 */ return this.includePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludePersons(List<ImageStorePersonData> includePersons) {
|
||||
/* 124 */ this.includePersons = includePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getExcludeLabels() {
|
||||
/* 128 */ return this.excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludeLabels(List<String> excludeLabels) {
|
||||
/* 132 */ this.excludeLabels = excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getExcludePersons() {
|
||||
/* 136 */ return this.excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludePersons(List<String> excludePersons) {
|
||||
/* 140 */ this.excludePersons = excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 144 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 148 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 152 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 156 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 160 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 164 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getNullDateIsLongTerm() {
|
||||
/* 168 */ return this.nullDateIsLongTerm;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setNullDateIsLongTerm(Boolean nullDateIsLongTerm) {
|
||||
/* 172 */ this.nullDateIsLongTerm = nullDateIsLongTerm;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStoreEditParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+110
-114
@@ -1,114 +1,110 @@
|
||||
/* */ 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() {
|
||||
/* 54 */ return this.personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonIds(List<String> personIds) {
|
||||
/* 58 */ this.personIds = personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 62 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 66 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 70 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 74 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 78 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 82 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 86 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 90 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 94 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 98 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Boolean getNullDateIsLongTerm() {
|
||||
/* 102 */ return this.nullDateIsLongTerm;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setNullDateIsLongTerm(Boolean nullDateIsLongTerm) {
|
||||
/* 106 */ this.nullDateIsLongTerm = nullDateIsLongTerm;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStorePersonBindParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+72
-76
@@ -1,76 +1,72 @@
|
||||
/* */ 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() {
|
||||
/* 40 */ return this.objectId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setObjectId(String objectId) {
|
||||
/* 44 */ this.objectId = objectId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 48 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 52 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 56 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 60 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 64 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 68 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStorePersonData.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+45
-49
@@ -1,49 +1,45 @@
|
||||
/* */ 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() {
|
||||
/* 29 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 33 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 37 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 41 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStorePersonDelParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+190
-194
@@ -1,194 +1,190 @@
|
||||
/* */ 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() {
|
||||
/* 86 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 90 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDelPersonIds() {
|
||||
/* 94 */ return this.delPersonIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDelPersonIds(List<String> delPersonIds) {
|
||||
/* 98 */ this.delPersonIds = delPersonIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsElevator() {
|
||||
/* 102 */ return this.isElevator;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsElevator(Integer isElevator) {
|
||||
/* 106 */ this.isElevator = isElevator;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 110 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 114 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 118 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 122 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getLabelIds() {
|
||||
/* 126 */ return this.labelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLabelIds(List<String> labelIds) {
|
||||
/* 130 */ this.labelIds = labelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getOrganizationIds() {
|
||||
/* 134 */ return this.organizationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrganizationIds(List<String> organizationIds) {
|
||||
/* 138 */ this.organizationIds = organizationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getAgeStart() {
|
||||
/* 142 */ return this.ageStart;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAgeStart(Integer ageStart) {
|
||||
/* 146 */ this.ageStart = ageStart;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getAgeEnd() {
|
||||
/* 150 */ return this.ageEnd;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAgeEnd(Integer ageEnd) {
|
||||
/* 154 */ this.ageEnd = ageEnd;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getGroupTimeStart() {
|
||||
/* 158 */ return this.groupTimeStart;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupTimeStart(Long groupTimeStart) {
|
||||
/* 162 */ this.groupTimeStart = groupTimeStart;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getGroupTimeEnd() {
|
||||
/* 166 */ return this.groupTimeEnd;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupTimeEnd(Long groupTimeEnd) {
|
||||
/* 170 */ this.groupTimeEnd = groupTimeEnd;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getImageStoreIds() {
|
||||
/* 174 */ return this.imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
/* 178 */ this.imageStoreIds = imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getPersonIds() {
|
||||
/* 182 */ return this.personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonIds(List<String> personIds) {
|
||||
/* 186 */ this.personIds = personIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStorePersonQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+110
-114
@@ -1,114 +1,110 @@
|
||||
/* */ 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() {
|
||||
/* 54 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 58 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 62 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 66 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 70 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 74 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 78 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 82 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 86 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 90 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getComparePicture() {
|
||||
/* 94 */ return this.comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setComparePicture(String comparePicture) {
|
||||
/* 98 */ this.comparePicture = comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageBase64() {
|
||||
/* 102 */ return this.imageBase64;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageBase64(String imageBase64) {
|
||||
/* 106 */ this.imageBase64 = imageBase64;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStorePersonSaveParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+190
-194
@@ -1,194 +1,190 @@
|
||||
/* */ 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() {
|
||||
/* 86 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 90 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getPersonIds() {
|
||||
/* 94 */ return this.personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonIds(List<String> personIds) {
|
||||
/* 98 */ this.personIds = personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getImageIds() {
|
||||
/* 102 */ return this.imageIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageIds(List<String> imageIds) {
|
||||
/* 106 */ this.imageIds = imageIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 110 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 114 */ this.type = type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 118 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 122 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 126 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 130 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 134 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 138 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getOrgIds() {
|
||||
/* 142 */ return this.orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgIds(List<String> orgIds) {
|
||||
/* 146 */ this.orgIds = orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 150 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 154 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getApplicationIds() {
|
||||
/* 158 */ return this.applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationIds(List<String> applicationIds) {
|
||||
/* 162 */ this.applicationIds = applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getBusinessIds() {
|
||||
/* 166 */ return this.businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessIds(List<String> businessIds) {
|
||||
/* 170 */ this.businessIds = businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSourceApplicationId() {
|
||||
/* 174 */ return this.sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSourceApplicationId(String sourceApplicationId) {
|
||||
/* 178 */ this.sourceApplicationId = sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getLabelIds() {
|
||||
/* 182 */ return this.labelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLabelIds(List<String> labelIds) {
|
||||
/* 186 */ this.labelIds = labelIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\ImageStoreQueryParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+78
-82
@@ -1,82 +1,78 @@
|
||||
/* */ 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() {
|
||||
/* 38 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 42 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 46 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 50 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 54 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 58 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 62 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 66 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getPersonStatus() {
|
||||
/* 70 */ return this.personStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonStatus(Integer personStatus) {
|
||||
/* 74 */ this.personStatus = personStatus;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\QueryDevicePersonSyncLogParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+55
-59
@@ -1,59 +1,55 @@
|
||||
/* */ 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() {
|
||||
/* 31 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 35 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 39 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 43 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 47 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 51 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\QueryDevicePersonSyncParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+83
-87
@@ -1,87 +1,83 @@
|
||||
/* */ 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() {
|
||||
/* 43 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 47 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 51 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 55 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getPersonIds() {
|
||||
/* 59 */ return this.personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonIds(List<String> personIds) {
|
||||
/* 63 */ this.personIds = personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getOrganizationIds() {
|
||||
/* 67 */ return this.organizationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrganizationIds(List<String> organizationIds) {
|
||||
/* 71 */ this.organizationIds = organizationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getLabelIds() {
|
||||
/* 75 */ return this.labelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLabelIds(List<String> labelIds) {
|
||||
/* 79 */ this.labelIds = labelIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\param\UpdateGroupPersonRefParam.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+55
-59
@@ -1,59 +1,55 @@
|
||||
/* */ 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() {
|
||||
/* 31 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 35 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getImageStoreIds() {
|
||||
/* 39 */ return this.imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
/* 43 */ this.imageStoreIds = imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCode() {
|
||||
/* 47 */ return this.code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCode(String code) {
|
||||
/* 51 */ this.code = code;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\DeviceImageStoreReSyncResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+64
-68
@@ -1,68 +1,64 @@
|
||||
/* */ 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() {
|
||||
/* 32 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 36 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 40 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 44 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 48 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 52 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCode() {
|
||||
/* 56 */ return this.code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCode(String code) {
|
||||
/* 60 */ this.code = code;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\DevicePersonResyncResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+66
-70
@@ -1,70 +1,66 @@
|
||||
/* */ 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() {
|
||||
/* 34 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 38 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreName() {
|
||||
/* 42 */ return this.imageStoreName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreName(String imageStoreName) {
|
||||
/* 46 */ this.imageStoreName = imageStoreName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getValidCount() {
|
||||
/* 50 */ return this.validCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidCount(int validCount) {
|
||||
/* 54 */ this.validCount = validCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getFailureCount() {
|
||||
/* 58 */ return this.failureCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFailureCount(int failureCount) {
|
||||
/* 62 */ this.failureCount = failureCount;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\DevicePersonSyncDetailResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+175
-179
@@ -1,179 +1,175 @@
|
||||
/* */ 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() {
|
||||
/* 71 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 75 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 79 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 83 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 87 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 91 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageUrl() {
|
||||
/* 95 */ return this.imageUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageUrl(String imageUrl) {
|
||||
/* 99 */ this.imageUrl = imageUrl;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 103 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 107 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreName() {
|
||||
/* 111 */ return this.imageStoreName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreName(String imageStoreName) {
|
||||
/* 115 */ this.imageStoreName = imageStoreName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 119 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 123 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getErrorMessage() {
|
||||
/* 127 */ return this.errorMessage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setErrorMessage(String errorMessage) {
|
||||
/* 131 */ this.errorMessage = errorMessage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public long getLastUpdateTime() {
|
||||
/* 135 */ return this.lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateTime(long lastUpdateTime) {
|
||||
/* 139 */ this.lastUpdateTime = lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getPersonStatus() {
|
||||
/* 143 */ return this.personStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonStatus(Integer personStatus) {
|
||||
/* 147 */ this.personStatus = personStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getValidStatus() {
|
||||
/* 151 */ return this.validStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidStatus(int validStatus) {
|
||||
/* 155 */ this.validStatus = validStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastPullTime() {
|
||||
/* 159 */ return this.lastPullTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastPullTime(Long lastPullTime) {
|
||||
/* 163 */ this.lastPullTime = lastPullTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastReportTime() {
|
||||
/* 167 */ return this.lastReportTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastReportTime(Long lastReportTime) {
|
||||
/* 171 */ this.lastReportTime = lastReportTime;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\DevicePersonSyncLogResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+80
-84
@@ -1,84 +1,80 @@
|
||||
/* */ 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() {
|
||||
/* 40 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 44 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 48 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 52 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 56 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 60 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getValidCount() {
|
||||
/* 64 */ return this.validCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidCount(int validCount) {
|
||||
/* 68 */ this.validCount = validCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public int getFailureCount() {
|
||||
/* 72 */ return this.failureCount;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFailureCount(int failureCount) {
|
||||
/* 76 */ this.failureCount = failureCount;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\DevicePersonSyncResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+202
-206
@@ -1,206 +1,202 @@
|
||||
/* */ 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() {
|
||||
/* 89 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 93 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 97 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 101 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getPersonNum() {
|
||||
/* 105 */ return this.personNum;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonNum(Integer personNum) {
|
||||
/* 109 */ this.personNum = personNum;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessName() {
|
||||
/* 113 */ return this.businessName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessName(String businessName) {
|
||||
/* 117 */ this.businessName = businessName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getApplicationNames() {
|
||||
/* 121 */ return this.applicationNames;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationNames(List<String> applicationNames) {
|
||||
/* 125 */ this.applicationNames = applicationNames;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 130 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 134 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 138 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 142 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 146 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 150 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<OrganizationResult> getIncludeOrganizations() {
|
||||
/* 154 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeOrganizations(List<OrganizationResult> includeOrganizations) {
|
||||
/* 158 */ this.includeOrganizations = includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<LabelResult> getIncludeLabels() {
|
||||
/* 162 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeLabels(List<LabelResult> includeLabels) {
|
||||
/* 166 */ this.includeLabels = includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<ImgStorePersonResult> getIncludePersons() {
|
||||
/* 170 */ return this.includePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludePersons(List<ImgStorePersonResult> includePersons) {
|
||||
/* 174 */ this.includePersons = includePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<LabelResult> getExcludeLabels() {
|
||||
/* 178 */ return this.excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludeLabels(List<LabelResult> excludeLabels) {
|
||||
/* 182 */ this.excludeLabels = excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<ImgStorePersonResult> getExcludePersons() {
|
||||
/* 186 */ return this.excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludePersons(List<ImgStorePersonResult> excludePersons) {
|
||||
/* 190 */ this.excludePersons = excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<DeviceImageStoreResult> getDevices() {
|
||||
/* 194 */ return this.devices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDevices(List<DeviceImageStoreResult> devices) {
|
||||
/* 198 */ this.devices = devices;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImageStoreDetailResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+287
-291
@@ -1,291 +1,287 @@
|
||||
/* */ 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() {
|
||||
/* 122 */ return this.excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public void setExcludePersons(List<ImgStorePersonResult> excludePersons) {
|
||||
/* 127 */ this.excludePersons = excludePersons;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public static long getSerialVersionUID() {
|
||||
/* 131 */ return -4747761188572538334L;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 135 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 139 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 143 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 147 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 151 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 155 */ this.type = type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 159 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 163 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessName() {
|
||||
/* 167 */ return this.businessName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessName(String businessName) {
|
||||
/* 171 */ this.businessName = businessName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getPersonNum() {
|
||||
/* 175 */ return this.personNum;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonNum(Integer personNum) {
|
||||
/* 179 */ this.personNum = personNum;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 183 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 187 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getBusinessIds() {
|
||||
/* 191 */ return this.businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessIds(List<String> businessIds) {
|
||||
/* 195 */ this.businessIds = businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getApplicationIds() {
|
||||
/* 199 */ return this.applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationIds(List<String> applicationIds) {
|
||||
/* 203 */ this.applicationIds = applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 207 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 211 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getOrgIds() {
|
||||
/* 215 */ return this.orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgIds(List<String> orgIds) {
|
||||
/* 219 */ this.orgIds = orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSourceApplicationId() {
|
||||
/* 223 */ return this.sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSourceApplicationId(String sourceApplicationId) {
|
||||
/* 227 */ this.sourceApplicationId = sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSourceApplicationName() {
|
||||
/* 231 */ return this.sourceApplicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSourceApplicationName(String sourceApplicationName) {
|
||||
/* 235 */ this.sourceApplicationName = sourceApplicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 239 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 243 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 247 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 251 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 255 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 259 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<OrganizationResult> getIncludeOrganizations() {
|
||||
/* 263 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeOrganizations(List<OrganizationResult> includeOrganizations) {
|
||||
/* 267 */ this.includeOrganizations = includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<LabelResult> getIncludeLabels() {
|
||||
/* 271 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeLabels(List<LabelResult> includeLabels) {
|
||||
/* 275 */ this.includeLabels = includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<LabelResult> getExcludeLabels() {
|
||||
/* 279 */ return this.excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExcludeLabels(List<LabelResult> excludeLabels) {
|
||||
/* 283 */ this.excludeLabels = excludeLabels;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImageStoreListResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+202
-206
@@ -1,206 +1,202 @@
|
||||
/* */ 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() {
|
||||
/* 90 */ return this.icCardNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIcCardNo(String icCardNo) {
|
||||
/* 94 */ this.icCardNo = icCardNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 98 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 102 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 106 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 110 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageId() {
|
||||
/* 114 */ return this.imageId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageId(String imageId) {
|
||||
/* 118 */ this.imageId = imageId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 122 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 126 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getComparePicture() {
|
||||
/* 130 */ return this.comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setComparePicture(String comparePicture) {
|
||||
/* 134 */ this.comparePicture = comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getGender() {
|
||||
/* 138 */ return this.gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGender(Integer gender) {
|
||||
/* 142 */ this.gender = gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getAge() {
|
||||
/* 146 */ return this.age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAge(Integer age) {
|
||||
/* 150 */ this.age = age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 154 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 158 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 162 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 166 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getGroupTime() {
|
||||
/* 170 */ return this.groupTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupTime(Long groupTime) {
|
||||
/* 174 */ this.groupTime = groupTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 178 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 182 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getErrorMessage() {
|
||||
/* 186 */ return this.errorMessage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setErrorMessage(String errorMessage) {
|
||||
/* 190 */ this.errorMessage = errorMessage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 194 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 198 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImageStorePersonResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+110
-114
@@ -1,114 +1,110 @@
|
||||
/* */ 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() {
|
||||
/* 54 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 58 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageId() {
|
||||
/* 62 */ return this.imageId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageId(String imageId) {
|
||||
/* 66 */ this.imageId = imageId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 70 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 74 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 78 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 82 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getAge() {
|
||||
/* 86 */ return this.age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAge(Integer age) {
|
||||
/* 90 */ this.age = age;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getGender() {
|
||||
/* 94 */ return this.gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGender(Integer gender) {
|
||||
/* 98 */ this.gender = gender;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getComparePicture() {
|
||||
/* 102 */ return this.comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setComparePicture(String comparePicture) {
|
||||
/* 106 */ this.comparePicture = comparePicture;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImageStorePersonSaveResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+228
-232
@@ -1,232 +1,228 @@
|
||||
/* */ 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() {
|
||||
/* 100 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 104 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 108 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 112 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 116 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 120 */ this.type = type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 124 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 128 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getApplicationId() {
|
||||
/* 132 */ return this.applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationId(String applicationId) {
|
||||
/* 136 */ this.applicationId = applicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getBusinessIds() {
|
||||
/* 140 */ return this.businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessIds(List<String> businessIds) {
|
||||
/* 144 */ this.businessIds = businessIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getApplicationIds() {
|
||||
/* 148 */ return this.applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setApplicationIds(List<String> applicationIds) {
|
||||
/* 152 */ this.applicationIds = applicationIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 156 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 160 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getOrgIds() {
|
||||
/* 164 */ return this.orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgIds(List<String> orgIds) {
|
||||
/* 168 */ this.orgIds = orgIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessName() {
|
||||
/* 172 */ return this.businessName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessName(String businessName) {
|
||||
/* 176 */ this.businessName = businessName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getPersonNum() {
|
||||
/* 180 */ return this.personNum;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonNum(Integer personNum) {
|
||||
/* 184 */ this.personNum = personNum;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSourceApplicationId() {
|
||||
/* 188 */ return this.sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSourceApplicationId(String sourceApplicationId) {
|
||||
/* 192 */ this.sourceApplicationId = sourceApplicationId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSourceApplicationName() {
|
||||
/* 196 */ return this.sourceApplicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSourceApplicationName(String sourceApplicationName) {
|
||||
/* 200 */ this.sourceApplicationName = sourceApplicationName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 204 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 208 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 212 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 216 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 220 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 224 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImageStoreResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+44
-48
@@ -1,48 +1,44 @@
|
||||
/* */ 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() {
|
||||
/* 28 */ return this.successPersonIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSuccessPersonIds(List<String> successPersonIds) {
|
||||
/* 32 */ this.successPersonIds = successPersonIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getFailPersonIds() {
|
||||
/* 36 */ return this.failPersonIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFailPersonIds(List<String> failPersonIds) {
|
||||
/* 40 */ this.failPersonIds = failPersonIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImgStoreBatchBindPersonResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+217
-221
@@ -1,221 +1,217 @@
|
||||
/* */ package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class ImgStorePersonResult
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 678463903819122362L;
|
||||
/* */ private String id;
|
||||
/* */ private String businessId;
|
||||
/* */ private String personCode;
|
||||
/* */ private String name;
|
||||
/* */ private String phone;
|
||||
/* */ private Short status;
|
||||
/* */ private Long expiryBeginDate;
|
||||
/* */ private Long expiryEndDate;
|
||||
/* */ private List<String> validDateCron;
|
||||
/* */ private String showPicture;
|
||||
/* */ private String comparePicture;
|
||||
/* */ private Short isDel;
|
||||
/* */ private Long createTime;
|
||||
/* */ private String createUserId;
|
||||
/* */ private Long lastUpdateTime;
|
||||
/* */ private String lastUpdateUserId;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 89 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 93 */ this.id = (id == null) ? null : id.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 97 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 101 */ this.businessId = (businessId == null) ? null : businessId.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonCode() {
|
||||
/* 105 */ return this.personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonCode(String personCode) {
|
||||
/* 109 */ this.personCode = (personCode == null) ? null : personCode.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 113 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 117 */ this.name = (name == null) ? null : name.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPhone() {
|
||||
/* 121 */ return this.phone;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPhone(String phone) {
|
||||
/* 125 */ this.phone = (phone == null) ? null : phone.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Short getStatus() {
|
||||
/* 129 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Short status) {
|
||||
/* 133 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryBeginDate() {
|
||||
/* 137 */ return this.expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
/* 141 */ this.expiryBeginDate = expiryBeginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getExpiryEndDate() {
|
||||
/* 145 */ return this.expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setExpiryEndDate(Long expiryEndDate) {
|
||||
/* 149 */ this.expiryEndDate = expiryEndDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getShowPicture() {
|
||||
/* 153 */ return this.showPicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setShowPicture(String showPicture) {
|
||||
/* 157 */ this.showPicture = (showPicture == null) ? null : showPicture.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getComparePicture() {
|
||||
/* 161 */ return this.comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setComparePicture(String comparePicture) {
|
||||
/* 165 */ this.comparePicture = (comparePicture == null) ? null : comparePicture.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Short getIsDel() {
|
||||
/* 169 */ return this.isDel;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsDel(Short isDel) {
|
||||
/* 173 */ this.isDel = isDel;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateTime() {
|
||||
/* 177 */ return this.createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateTime(Long createTime) {
|
||||
/* 181 */ this.createTime = createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCreateUserId() {
|
||||
/* 185 */ return this.createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateUserId(String createUserId) {
|
||||
/* 189 */ this.createUserId = (createUserId == null) ? null : createUserId.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastUpdateTime() {
|
||||
/* 193 */ return this.lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
/* 197 */ this.lastUpdateTime = lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLastUpdateUserId() {
|
||||
/* 201 */ return this.lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
/* 205 */ this.lastUpdateUserId = (lastUpdateUserId == null) ? null : lastUpdateUserId.trim();
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getValidDateCron() {
|
||||
/* 209 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(List<String> validDateCron) {
|
||||
/* 213 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\intelligent-cwoscomponent-interface-2.9.2-xinghewan.jar!\cn\cloudwalk\client\cwoscomponent\intelligent\imagestore\result\ImgStorePersonResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
package cn.cloudwalk.client.cwoscomponent.intelligent.imagestore.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ImgStorePersonResult
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 678463903819122362L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personCode;
|
||||
private String name;
|
||||
private String phone;
|
||||
private Short status;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private List<String> validDateCron;
|
||||
private String showPicture;
|
||||
private String comparePicture;
|
||||
private Short isDel;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = (id == null) ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = (businessId == null) ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = (personCode == null) ? null : personCode.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = (name == null) ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = (phone == null) ? null : phone.trim();
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
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 getShowPicture() {
|
||||
return this.showPicture;
|
||||
}
|
||||
|
||||
public void setShowPicture(String showPicture) {
|
||||
this.showPicture = (showPicture == null) ? null : showPicture.trim();
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = (comparePicture == null) ? null : comparePicture.trim();
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
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 == null) ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
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 == null) ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public List<String> getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(List<String> validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user