mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
新增 路通云停系统获取令牌接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user