ThirdPartyStationInfoQuery.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.zsElectric.boot.business.model.query;
  2. import com.zsElectric.boot.common.base.BasePageQuery;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. /**
  7. * 第三方充电站信息查询对象
  8. *
  9. * @author system
  10. * @since 2025-12-11
  11. */
  12. @Schema(description = "第三方充电站信息查询对象")
  13. @Getter
  14. @Setter
  15. public class ThirdPartyStationInfoQuery extends BasePageQuery {
  16. @Schema(description = "充电站ID")
  17. private String stationId;
  18. @Schema(description = "充电站名称")
  19. private String stationName;
  20. @Schema(description = "所在城市(区域编码)")
  21. private String areaCode;
  22. @Schema(description = "设备所属方")
  23. private String equipmentOwnerId;
  24. @Schema(description = "站点状态")
  25. private Integer stationStatus;
  26. @Schema(description = "站点类型")
  27. private Integer stationType;
  28. @Schema(description = "服务电话")
  29. private String serviceTel;
  30. @Schema(description = "收费类型(0-平台 1-企业)")
  31. private Integer salesType;
  32. }