mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
72 lines
1.1 KiB
Java
72 lines
1.1 KiB
Java
package com.jsowell.pile.dto;
|
||
|
||
import com.jsowell.common.core.domain.BaseEntity;
|
||
import lombok.AllArgsConstructor;
|
||
import lombok.Builder;
|
||
import lombok.Data;
|
||
import lombok.NoArgsConstructor;
|
||
|
||
/**
|
||
* 站点管理前台参数
|
||
*
|
||
* @author JS-ZZA
|
||
* @date 2022/9/1 13:25
|
||
*/
|
||
@Data
|
||
@AllArgsConstructor
|
||
@NoArgsConstructor
|
||
@Builder
|
||
public class QueryStationDTO extends BaseEntity {
|
||
private String stationId;
|
||
|
||
/**
|
||
* 站点名称
|
||
*/
|
||
private String stationName;
|
||
|
||
/**
|
||
* 运营商名称
|
||
*/
|
||
private String merchantName;
|
||
|
||
/**
|
||
* 站点地址
|
||
*/
|
||
private String stationAddress;
|
||
|
||
/**
|
||
* 运营商id
|
||
*/
|
||
private String merchantId;
|
||
|
||
/**
|
||
* 站点经度
|
||
*/
|
||
private String stationLng;
|
||
|
||
/**
|
||
* 站点纬度
|
||
*/
|
||
private String stationLat;
|
||
|
||
/**
|
||
* 每页数量
|
||
*/
|
||
private int pageSize;
|
||
|
||
/**
|
||
* 页码
|
||
*/
|
||
private int pageNum;
|
||
|
||
/**
|
||
* 是否对外开放(0-否;1-是)
|
||
*/
|
||
private String publicFlag;
|
||
|
||
/**
|
||
* 站点二维码前缀
|
||
*/
|
||
private String qrcodePrefix;
|
||
}
|