| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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;
- import java.time.LocalDateTime;
- /**
- * 充电订单信息分页查询对象
- *
- * @author zsElectric
- * @since 2025-12-17 19:13
- */
- @Schema(description ="充电订单信息查询对象")
- @Getter
- @Setter
- public class ChargeOrderInfoQuery extends BasePageQuery {
- @Schema(description = "充电桩编号")
- private Integer equipmentId;
- @Schema(description = "状态0待启动 1 充电中 2 结算中 3 已完成, 5未成功充电")
- private Integer status;
- @Schema(description = "订单类型 0-平台订单 2-企业订单")
- private Integer orderType;
- @Schema(description = "补缴状态 0.无需补缴 1.待补缴 2.已补缴 3.部分补缴")
- private Integer maspStatus;
- @Schema(description = "状态0待启动 1 充电中 2 结算中 3 已完成, 5未成功充电")
- private String phoneNum;
- @Schema(description = "1 主动停止 2 充满停止 3 余额不足停止, 4电桩按钮停止")
- private Integer stopType;
- @Schema(description = "开始时间")
- private LocalDateTime startTime;
- @Schema(description = "结束时间")
- private LocalDateTime endTime;
- }
|