| package com.dy.pipIrrTerminal.general.qo; | 
|   | 
| import com.dy.common.webUtil.QueryConditionVo; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import jakarta.validation.constraints.NotBlank; | 
| import jakarta.validation.constraints.NotNull; | 
| import lombok.*; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2025-06-25 13:53 | 
|  * @LastEditTime 2025-06-25 13:53 | 
|  * @Description 充值机用交易汇总查询对象 | 
|  */ | 
|   | 
| @Data | 
| @EqualsAndHashCode(callSuper = false) | 
| @ToString(callSuper = true) | 
| @NoArgsConstructor | 
| @AllArgsConstructor | 
| @Builder | 
| public class QoSummary extends QueryConditionVo { | 
|     /** | 
|      * 查询起始日期 | 
|      */ | 
|     @NotBlank(message = "查询起始日期不能为空") | 
|     public String timeStart; | 
|   | 
|     /** | 
|      * 查询截止日期 | 
|      */ | 
|     @NotBlank(message = "查询截止日期不能为空") | 
|     public String timeStop; | 
|   | 
|     /** | 
|      * 收银员ID | 
|      */ | 
|     @NotNull(message = "收银员不能为空") | 
|     public Long cashierId; | 
| } |