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