mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
新增 路通云停通用实体类
This commit is contained in:
48
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lutongyun/common/LTYTCommonParams.java
vendored
Normal file
48
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lutongyun/common/LTYTCommonParams.java
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
package com.jsowell.thirdparty.lutongyun.common;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 路通云停道闸系统 通用参数
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/8/21 9:26
|
||||
*/
|
||||
@Data
|
||||
public class LTYTCommonParams {
|
||||
/**
|
||||
* 应用标识 Y
|
||||
* 一个 AppId 对应唯一的 SecretKey,用来生成签名信息
|
||||
*/
|
||||
private String appId;
|
||||
|
||||
/**
|
||||
* 放行标志 Y
|
||||
* 登入获取
|
||||
*/
|
||||
private String token;
|
||||
|
||||
/**
|
||||
* 请求时间 Y
|
||||
* 格式:YYYYMMDDHHMMSS
|
||||
*/
|
||||
private String accTime;
|
||||
|
||||
/**
|
||||
* 版本 Y
|
||||
* 例:1.0
|
||||
*/
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 请求条件 N
|
||||
* 查询条件
|
||||
*/
|
||||
private String data;
|
||||
|
||||
/**
|
||||
* 城市编码 N
|
||||
* 用于标记来源的城市平台
|
||||
*/
|
||||
private String cityCode;
|
||||
}
|
||||
22
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lutongyun/common/LTYTCommonResult.java
vendored
Normal file
22
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lutongyun/common/LTYTCommonResult.java
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
package com.jsowell.thirdparty.lutongyun.common;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 路通云停
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/8/21 9:52
|
||||
*/
|
||||
@Data
|
||||
public class LTYTCommonResult {
|
||||
/**
|
||||
* 错误编码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 错误描述
|
||||
*/
|
||||
private String msg;
|
||||
}
|
||||
Reference in New Issue
Block a user