新增 路通云停系统获取令牌接口

This commit is contained in:
Lemon
2023-08-23 14:13:11 +08:00
parent 871f161d74
commit 7bcab6a65a
5 changed files with 206 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
package com.jsowell.pile.dto.lutongyunting;
import lombok.Data;
/**
* 路通云停道闸系统请求获取tokenDTO
*
* @author Lemon
* @Date 2023/8/23 11:11
*/
@Data
public class GetTokenDTO {
private String stationId;
/**
* 唯一标识
*/
private String appId;
/**
* 平台密钥
*/
private String secretKey;
/**
* 请求时间格式YYYYMMDDHHMMSS
*/
private String accTime;
/**
* 1.0
*/
private String version;
/**
* 使用签名公式获得
*/
private String sign;
}