update 二维码跳转小程序

This commit is contained in:
Lemon
2023-08-23 10:23:35 +08:00
parent 471f740979
commit 544319bf95
3 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,48 @@
package com.jsowell.thirdparty.lutongyunting.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;
}

View File

@@ -0,0 +1,22 @@
package com.jsowell.thirdparty.lutongyunting.common;
import lombok.Data;
/**
* 路通云停
*
* @author Lemon
* @Date 2023/8/21 9:52
*/
@Data
public class LTYTCommonResult {
/**
* 错误编码
*/
private String code;
/**
* 错误描述
*/
private String msg;
}