mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
update 对接第三方平台
This commit is contained in:
24
jsowell-pile/src/main/java/com/jsowell/pile/thirdparty/CommonParamsDTO.java
vendored
Normal file
24
jsowell-pile/src/main/java/com/jsowell/pile/thirdparty/CommonParamsDTO.java
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package com.jsowell.pile.thirdparty;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class CommonParamsDTO {
|
||||
@JsonProperty(value = "OperatorID")
|
||||
private String operatorID;
|
||||
|
||||
@JsonProperty(value = "Data")
|
||||
private String data;
|
||||
|
||||
@JsonProperty(value = "TimeStamp")
|
||||
private String timeStamp;
|
||||
|
||||
@JsonProperty(value = "Seq")
|
||||
private String seq;
|
||||
|
||||
@JsonProperty(value = "Sig")
|
||||
private String sig;
|
||||
}
|
||||
Reference in New Issue
Block a user