2023-03-04 16:29:55 +08:00
|
|
|
|
package com.jsowell.pile.dto;
|
|
|
|
|
|
|
|
|
|
|
|
import com.jsowell.common.core.domain.BaseEntity;
|
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
2023-08-18 09:27:22 +08:00
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 站点管理前台参数
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author JS-ZZA
|
|
|
|
|
|
* @date 2022/9/1 13:25
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
|
@Builder
|
|
|
|
|
|
public class QueryStationDTO extends BaseEntity {
|
2023-03-31 16:19:26 +08:00
|
|
|
|
private String stationId;
|
|
|
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 站点名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String stationName;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 运营商名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String merchantName;
|
|
|
|
|
|
|
2023-03-29 14:17:53 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 站点地址
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String stationAddress;
|
|
|
|
|
|
|
2023-07-26 13:23:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 地区编码
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String areaCode;
|
|
|
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 运营商id
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String merchantId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 站点经度
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String stationLng;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 站点纬度
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String stationLat;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 每页数量
|
|
|
|
|
|
*/
|
|
|
|
|
|
private int pageSize;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 页码
|
|
|
|
|
|
*/
|
|
|
|
|
|
private int pageNum;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 是否对外开放(0-否;1-是)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String publicFlag;
|
2023-03-31 16:19:26 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 站点二维码前缀
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String qrcodePrefix;
|
2023-08-18 09:27:22 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 运营商部门id
|
|
|
|
|
|
*/
|
|
|
|
|
|
private List<String> merchantDeptId;
|
2023-03-04 16:29:55 +08:00
|
|
|
|
}
|