| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrSell.general.qo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2024-01-25 20:13 | 
|---|
|  |  |  | * @LastEditTime 2024-01-25 20:13 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | @ToString(callSuper = true) | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | @Schema(name = "待审核交易汇总查询条件") | 
|---|
|  |  |  | public class QoToAudit extends QueryConditionVo { | 
|---|
|  |  |  | @Schema(description = "交易日期") | 
|---|
|  |  |  | public String tradeDate; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "收银员ID") | 
|---|
|  |  |  | public Long cashierId; | 
|---|
|  |  |  | } | 
|---|