|
|
@@ -1,7 +1,7 @@
|
|
|
package com.zsElectric.boot.common.util.electric;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import lombok.Data;
|
|
|
-import lombok.Getter;
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
import java.io.Serial;
|
|
|
@@ -13,26 +13,17 @@ public class RequestParmsEntitys implements Serializable {
|
|
|
@Serial
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /**
|
|
|
- * 运营商标识
|
|
|
- */
|
|
|
private String OperatorID;
|
|
|
|
|
|
- /**
|
|
|
- * 加密后的参数
|
|
|
- */
|
|
|
private String Data;
|
|
|
|
|
|
- /**
|
|
|
- * 时间戳
|
|
|
- */
|
|
|
private String TimeStamp;
|
|
|
|
|
|
- /**
|
|
|
- * 序列号
|
|
|
- */
|
|
|
private String Seq;
|
|
|
|
|
|
+ private String Sig;
|
|
|
+
|
|
|
+ @JsonProperty("OperatorID")
|
|
|
public String getOperatorID() {
|
|
|
return OperatorID;
|
|
|
}
|
|
|
@@ -41,6 +32,7 @@ public class RequestParmsEntitys implements Serializable {
|
|
|
OperatorID = operatorID;
|
|
|
}
|
|
|
|
|
|
+ @JsonProperty("Data")
|
|
|
public String getData() {
|
|
|
return Data;
|
|
|
}
|
|
|
@@ -49,6 +41,7 @@ public class RequestParmsEntitys implements Serializable {
|
|
|
Data = data;
|
|
|
}
|
|
|
|
|
|
+ @JsonProperty("TimeStamp")
|
|
|
public String getTimeStamp() {
|
|
|
return TimeStamp;
|
|
|
}
|
|
|
@@ -57,6 +50,7 @@ public class RequestParmsEntitys implements Serializable {
|
|
|
TimeStamp = timeStamp;
|
|
|
}
|
|
|
|
|
|
+ @JsonProperty("Seq")
|
|
|
public String getSeq() {
|
|
|
return Seq;
|
|
|
}
|
|
|
@@ -65,6 +59,7 @@ public class RequestParmsEntitys implements Serializable {
|
|
|
Seq = seq;
|
|
|
}
|
|
|
|
|
|
+ @JsonProperty("Sig")
|
|
|
public String getSig() {
|
|
|
return Sig;
|
|
|
}
|
|
|
@@ -72,12 +67,4 @@ public class RequestParmsEntitys implements Serializable {
|
|
|
public void setSig(String sig) {
|
|
|
Sig = sig;
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 签名
|
|
|
- */
|
|
|
- private String Sig;
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-}
|
|
|
+}
|