新增 对接联联平台接口

This commit is contained in:
Lemon
2023-04-08 14:20:19 +08:00
parent a3a82c1648
commit c73ca96ee2
21 changed files with 166 additions and 24 deletions

View File

@@ -0,0 +1,31 @@
package com.jsowell.thirdparty.dto;
import lombok.Data;
/**
* 查询站点信息dto
*
* @author JS-ZZA
* @date 2023/4/8 10:02
*/
@Data
public class QueryStationInfoDTO {
/**
* 上次查询时间
* 格式“yyyy-MM-dd HH:mm:ss”可以为空如果
* 不填写,则查询所有的充电站信息
*/
private String LastQueryTime;
/**
* 查询页码
* 不填写默认为 1
*/
private Integer PageNo;
/**
* 每页数量
* 不填写默认为 10
*/
private Integer PageSize;
}