| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.zsElectric.boot.business.model.query;
- import com.zsElectric.boot.common.base.BasePageQuery;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * 第三方充电站信息查询对象
- *
- * @author system
- * @since 2025-12-11
- */
- @Schema(description = "第三方充电站信息查询对象")
- @Getter
- @Setter
- public class ThirdPartyStationInfoQuery extends BasePageQuery {
- @Schema(description = "充电站ID")
- private String stationId;
- @Schema(description = "充电站名称")
- private String stationName;
- @Schema(description = "所在城市(区域编码)")
- private String areaCode;
- @Schema(description = "设备所属方")
- private String equipmentOwnerId;
- @Schema(description = "站点状态")
- private Integer stationStatus;
- @Schema(description = "站点类型")
- private Integer stationType;
- @Schema(description = "服务电话")
- private String serviceTel;
- @Schema(description = "收费类型(0-平台 1-企业)")
- private Integer salesType;
- }
|