mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
add 新增运营端小程序查询站点及充电枪状态
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
package com.jsowell.pile.dto.business;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* 运营端小程序查询站点及充电枪状态DTO
|
||||
*
|
||||
* @author Auto
|
||||
* @Date 2024/12/19
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class QueryStationWithConnectorStatusDTO {
|
||||
/**
|
||||
* 站点id(可选)
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 站点名称(可选,支持模糊查询)
|
||||
*/
|
||||
private String stationName;
|
||||
|
||||
/**
|
||||
* 页码(默认1)
|
||||
*/
|
||||
private int pageNum;
|
||||
|
||||
/**
|
||||
* 每页条数(默认10)
|
||||
*/
|
||||
private int pageSize;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user