fix(v0.11): 第四轮走查——AKS 入参 Map 化、Resource SDK 占位与协议实体 UID

- AksAuthService / ApiSecretService:token、auth 入参由 JSONObject 改为 Map,降低对 fastjson 类型的耦合。
- cwos-java-sdk-resource:占位实现统一为 CloudwalkResult.fail(RestSdkEnum) 或 Collections.emptyList();补全 RestDictServiceImpl、RestApiServiceImpl;修正企业用户 Feign Fallback。
- cloudwalk-device-sdk-protocol-entity:为 Serializable 实体类补充 serialVersionUID。

Made-with: Cursor

Former-commit-id: 830d47141c
This commit is contained in:
反编译工作区
2026-04-25 00:08:03 +08:00
parent b2f30dfeb7
commit ec020e45b0
125 changed files with 494 additions and 255 deletions
@@ -15,8 +15,10 @@ import javax.validation.constraints.NotNull;
public class BodyQualityData public class BodyQualityData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull(message = "52001035") @NotNull(message = "52001035")
@JsonProperty("quality_score") @JsonProperty("quality_score")
@JSONField(name = "quality_score") @JSONField(name = "quality_score")
@@ -267,8 +267,10 @@ import java.io.Serializable;
public class FaceAttrData public class FaceAttrData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("age_up_limit") @JsonProperty("age_up_limit")
@JSONField(name = "age_up_limit") @JSONField(name = "age_up_limit")
private ValueScoreData ageUpLimit; private ValueScoreData ageUpLimit;
@@ -78,8 +78,10 @@ import javax.validation.constraints.NotNull;
public class FaceQualityData public class FaceQualityData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull(message = "52001035") @NotNull(message = "52001035")
@JsonProperty("quality_score") @JsonProperty("quality_score")
@JSONField(name = "quality_score") @JSONField(name = "quality_score")
@@ -20,8 +20,10 @@ import javax.validation.constraints.NotNull;
public class GenderData public class GenderData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull(message = "52001071") @NotNull(message = "52001071")
@JsonProperty("type") @JsonProperty("type")
@JSONField(name = "type") @JSONField(name = "type")
@@ -29,8 +29,10 @@ import javax.validation.constraints.NotNull;
public class LocationData public class LocationData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull(message = "52001031") @NotNull(message = "52001031")
@JsonProperty("x") @JsonProperty("x")
@JSONField(name = "x") @JSONField(name = "x")
@@ -58,8 +58,10 @@ import java.io.Serializable;
public class NonVehicleAttrData public class NonVehicleAttrData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("vehicle_color") @JsonProperty("vehicle_color")
@JSONField(name = "vehicle_color") @JSONField(name = "vehicle_color")
private ValueScoreData vehicleColor; private ValueScoreData vehicleColor;
@@ -16,8 +16,10 @@ import javax.validation.constraints.NotNull;
public class Person public class Person
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("body") @JsonProperty("body")
@JSONField(name = "body") @JSONField(name = "body")
private Body bodyVar; private Body bodyVar;
@@ -63,8 +63,10 @@ import java.io.Serializable;
public class PlateAttrData public class PlateAttrData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("plate_no") @JsonProperty("plate_no")
@JSONField(name = "plate_no") @JSONField(name = "plate_no")
private ValueScoreData plateNo; private ValueScoreData plateNo;
@@ -21,8 +21,10 @@ import java.io.Serializable;
public class PlateData public class PlateData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("plate_pic") @JsonProperty("plate_pic")
@JSONField(name = "plate_pic") @JSONField(name = "plate_pic")
private String platePic; private String platePic;
@@ -20,8 +20,10 @@ import javax.validation.constraints.NotNull;
public class RaceData public class RaceData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull(message = "52001071") @NotNull(message = "52001071")
@JsonProperty("type") @JsonProperty("type")
@JSONField(name = "type") @JSONField(name = "type")
@@ -16,8 +16,10 @@ import javax.validation.constraints.NotNull;
public class UygurData public class UygurData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull(message = "52001073") @NotNull(message = "52001073")
@JsonProperty("probability") @JsonProperty("probability")
@JSONField(name = "probability") @JSONField(name = "probability")
@@ -19,8 +19,10 @@ import java.io.Serializable;
public class ValueScoreData public class ValueScoreData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("value") @JsonProperty("value")
@JSONField(name = "value") @JSONField(name = "value")
private String values; private String values;
@@ -160,8 +160,10 @@ import java.io.Serializable;
public class VehicleAttrData public class VehicleAttrData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("vehicle_color") @JsonProperty("vehicle_color")
@JSONField(name = "vehicle_color") @JSONField(name = "vehicle_color")
private ValueScoreData vehicleColor; private ValueScoreData vehicleColor;
@@ -29,8 +29,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class AuthenticationParam public class AuthenticationParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -24,8 +24,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class FaceCaptureParam public class FaceCaptureParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -14,8 +14,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class FaceCompareParam public class FaceCompareParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -59,8 +59,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class FaceDetectionParam public class FaceDetectionParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -34,8 +34,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class FaceFeatureCaptureParam public class FaceFeatureCaptureParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -100,8 +100,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class FaceRecognitionParam public class FaceRecognitionParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -52,8 +52,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class FaceRegistionParam public class FaceRegistionParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001009") @Size(min = 1, max = 64, message = "52001009")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -29,8 +29,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class GetServerTimeParam public class GetServerTimeParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -55,8 +55,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class GetUpgradeConfigParam public class GetUpgradeConfigParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -59,8 +59,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class PersonCardCompareParam public class PersonCardCompareParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -57,8 +57,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportCpuParam public class ReportCpuParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -51,8 +51,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportDeviceInfoParam public class ReportDeviceInfoParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001080") @NotBlank(message = "52001080")
@Size(min = 1, max = 32) @Size(min = 1, max = 32)
@JsonProperty("device_type") @JsonProperty("device_type")
@@ -47,8 +47,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportDeviceLocationParam public class ReportDeviceLocationParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -62,8 +62,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportDiskInfoParam public class ReportDiskInfoParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -41,8 +41,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportGpuParam public class ReportGpuParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -29,8 +29,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportHeartBeatParam public class ReportHeartBeatParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -47,8 +47,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportMemoryParam public class ReportMemoryParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -34,8 +34,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class ReportNetworkParam public class ReportNetworkParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -41,8 +41,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class RequestOrderTypeParam public class RequestOrderTypeParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@JsonProperty("device_id") @JsonProperty("device_id")
@JSONField(name = "device_id") @JSONField(name = "device_id")
@@ -28,8 +28,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class RestartDeviceParam public class RestartDeviceParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -29,8 +29,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class RoiConfigParam public class RoiConfigParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -109,8 +109,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class RoiUploadParam public class RoiUploadParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -22,8 +22,10 @@ import javax.validation.constraints.Size;
public class ThirdPartyGatewayQueryParam public class ThirdPartyGatewayQueryParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("device_types") @JsonProperty("device_types")
@JSONField(name = "device_types") @JSONField(name = "device_types")
List<String> deviceTypes; List<String> deviceTypes;
@@ -55,8 +55,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UpdateFeatureParam public class UpdateFeatureParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -33,8 +33,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UpdateGroupParam public class UpdateGroupParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -58,8 +58,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UpdatePersonParam public class UpdatePersonParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -52,8 +52,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UpdatePictureParam public class UpdatePictureParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -26,8 +26,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UpdateTokenParam public class UpdateTokenParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -42,8 +42,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UploadLogParam public class UploadLogParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -39,8 +39,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UploadPanoramaParam public class UploadPanoramaParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -68,8 +68,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UploadUpgradeLogParam public class UploadUpgradeLogParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -41,8 +41,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class UploadVideoFragmentParam public class UploadVideoFragmentParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -25,8 +25,10 @@ import java.math.BigDecimal;
public class AngleData public class AngleData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("pitch") @JsonProperty("pitch")
@JSONField(name = "pitch") @JSONField(name = "pitch")
private BigDecimal pitch; private BigDecimal pitch;
@@ -42,8 +42,10 @@ import java.io.Serializable;
public class AuthenticationResult public class AuthenticationResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("access_token") @JsonProperty("access_token")
@JSONField(name = "access_token") @JSONField(name = "access_token")
private String accessToken; private String accessToken;
@@ -25,8 +25,10 @@ import java.math.BigDecimal;
public class ExpressionData public class ExpressionData
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("type") @JsonProperty("type")
@JSONField(name = "type") @JSONField(name = "type")
private Integer type; private Integer type;
@@ -19,8 +19,10 @@ import java.io.Serializable;
public class FaceCaptureResult public class FaceCaptureResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -11,8 +11,10 @@ import java.util.List;
public class FaceCompareResult public class FaceCompareResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("score") @JsonProperty("score")
@JSONField(name = "score") @JSONField(name = "score")
private BigDecimal score; private BigDecimal score;
@@ -28,8 +28,10 @@ import java.util.List;
public class FaceDetectionResult public class FaceDetectionResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("face_num") @JsonProperty("face_num")
@JSONField(name = "face_num") @JSONField(name = "face_num")
private Integer faceNum; private Integer faceNum;
@@ -45,8 +45,10 @@ import java.util.List;
public class FaceFeatureCaptureResult public class FaceFeatureCaptureResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class FaceRecognitionResult public class FaceRecognitionResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -19,8 +19,10 @@ import java.io.Serializable;
public class FaceRegistionResult public class FaceRegistionResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class GetServerTimeResult public class GetServerTimeResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -23,8 +23,10 @@ import java.io.Serializable;
public class GetUpgradeConfigResult public class GetUpgradeConfigResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("version_type") @JsonProperty("version_type")
@JSONField(name = "version_type") @JSONField(name = "version_type")
private Integer versionType; private Integer versionType;
@@ -19,8 +19,10 @@ import java.io.Serializable;
public class PersonCardCompareResult public class PersonCardCompareResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -21,8 +21,10 @@ import java.io.Serializable;
public class ReportCpuResult public class ReportCpuResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -18,8 +18,10 @@ import java.util.List;
public class ReportDeviceInfoResult public class ReportDeviceInfoResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("version_data") @JsonProperty("version_data")
@JSONField(name = "version_data") @JSONField(name = "version_data")
private List<VersionInfo> versionData; private List<VersionInfo> versionData;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class ReportDeviceLocationResult public class ReportDeviceLocationResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class ReportDiskInfoResult public class ReportDiskInfoResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class ReportGpuResult public class ReportGpuResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -21,8 +21,10 @@ import java.io.Serializable;
public class ReportHeartBeatResult public class ReportHeartBeatResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class ReportMemoryResult public class ReportMemoryResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -19,8 +19,10 @@ import java.io.Serializable;
public class ReportNetworkResult public class ReportNetworkResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -29,8 +29,10 @@ import java.io.Serializable;
public class RestartDeviceResult public class RestartDeviceResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("is_restart") @JsonProperty("is_restart")
@JSONField(name = "is_restart") @JSONField(name = "is_restart")
private Integer isRestart; private Integer isRestart;
@@ -96,8 +96,10 @@ import javax.validation.constraints.NotNull;
public class RoiConfigResult public class RoiConfigResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -19,8 +19,10 @@ import java.util.List;
public class ThirdPartyGatewayQueryResult public class ThirdPartyGatewayQueryResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -50,8 +50,10 @@ import java.util.List;
public class UpdateFeatureResult public class UpdateFeatureResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("group_id") @JsonProperty("group_id")
@JSONField(name = "group_id") @JSONField(name = "group_id")
private String groupId; private String groupId;
@@ -29,8 +29,10 @@ import java.util.List;
public class UpdateGroupResult public class UpdateGroupResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -145,8 +145,10 @@ import javax.validation.constraints.Size;
public class UpdatePersonResult public class UpdatePersonResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("group_id") @JsonProperty("group_id")
@JSONField(name = "group_id") @JSONField(name = "group_id")
private String groupId; private String groupId;
@@ -56,8 +56,10 @@ import java.util.List;
public class UpdatePictureResult public class UpdatePictureResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("group_id") @JsonProperty("group_id")
@JSONField(name = "group_id") @JSONField(name = "group_id")
private String groupId; private String groupId;
@@ -42,8 +42,10 @@ import java.io.Serializable;
public class UpdateTokenResult public class UpdateTokenResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("access_token") @JsonProperty("access_token")
@JSONField(name = "access_token") @JSONField(name = "access_token")
private String accessToken; private String accessToken;
@@ -21,8 +21,10 @@ import java.io.Serializable;
public class UploadLogResult public class UploadLogResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -21,8 +21,10 @@ import java.io.Serializable;
public class UploadPanoramaResult public class UploadPanoramaResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -20,8 +20,10 @@ import java.io.Serializable;
public class UploadUpgradeLogResult public class UploadUpgradeLogResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -19,8 +19,10 @@ import java.io.Serializable;
public class UploadVideoFragmentResult public class UploadVideoFragmentResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("reserve_info") @JsonProperty("reserve_info")
@JSONField(name = "reserve_info") @JSONField(name = "reserve_info")
private String reserveInfo; private String reserveInfo;
@@ -28,8 +28,10 @@ import java.io.Serializable;
public class UploadLivenessDetectFailResult public class UploadLivenessDetectFailResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -55,8 +55,10 @@ import javax.validation.constraints.Size;
public class NoticeVmsParameterParam public class NoticeVmsParameterParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull @NotNull
@Size(min = 16, max = 16) @Size(min = 16, max = 16)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -56,8 +56,10 @@ import javax.validation.constraints.NotNull;
public class NotifyDeviceOtherGroupParam public class NotifyDeviceOtherGroupParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull @NotNull
@JsonProperty("device_id") @JsonProperty("device_id")
@JSONField(name = "device_id") @JSONField(name = "device_id")
@@ -48,8 +48,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyDeviceSettingParameterParam public class NotifyDeviceSettingParameterParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -31,8 +31,10 @@ import javax.validation.constraints.Size;
public class NotifyDeviceStatusControlParam public class NotifyDeviceStatusControlParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotNull @NotNull
@JsonProperty("device_id") @JsonProperty("device_id")
@JSONField(name = "device_id") @JSONField(name = "device_id")
@@ -33,8 +33,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyEntranceGuardControlParam public class NotifyEntranceGuardControlParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NoticeVmsParameterResult public class NoticeVmsParameterResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NotifyDeviceOtherGroupResult public class NotifyDeviceOtherGroupResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NotifyDeviceSettingParameterResult public class NotifyDeviceSettingParameterResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NotifyDeviceStatusControlResult public class NotifyDeviceStatusControlResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NotifyEntranceGuardControlResult public class NotifyEntranceGuardControlResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NotifyRereportSdkVersionResult public class NotifyRereportSdkVersionResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -25,8 +25,10 @@ import java.io.Serializable;
public class NotifySpecialPersonPictureResult public class NotifySpecialPersonPictureResult
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@JsonProperty("log_id") @JsonProperty("log_id")
@JSONField(name = "log_id") @JSONField(name = "log_id")
private String logId; private String logId;
@@ -30,8 +30,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class CheckTokenParam public class CheckTokenParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -21,8 +21,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class KeepAliveParam public class KeepAliveParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -38,8 +38,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyOrderParam public class NotifyOrderParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -30,8 +30,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyRoiSettingParam public class NotifyRoiSettingParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -29,8 +29,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyRoiUploadParam public class NotifyRoiUploadParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -46,8 +46,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyUpdateFeatureParam public class NotifyUpdateFeatureParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -39,8 +39,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyUpdateGroupParam public class NotifyUpdateGroupParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -38,8 +38,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyUpdatePersonParam public class NotifyUpdatePersonParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64, message = "52001008") @Size(min = 1, max = 64, message = "52001008")
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -40,8 +40,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyUpdatePictureParam public class NotifyUpdatePictureParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")
@@ -39,8 +39,10 @@ import org.hibernate.validator.constraints.NotBlank;
public class NotifyUpdateThresholdParam public class NotifyUpdateThresholdParam
implements Serializable implements Serializable {
{
private static final long serialVersionUID = 1L;
@NotBlank(message = "52001000") @NotBlank(message = "52001000")
@Size(min = 1, max = 64) @Size(min = 1, max = 64)
@JsonProperty("device_id") @JsonProperty("device_id")

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