New file |
| | |
| | | package com.dy.pipIrrSell.cardOperate.qo; |
| | | |
| | | import com.dy.common.webUtil.QueryConditionVo; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-02-01 11:03 |
| | | * @LastEditTime 2024-02-01 11:03 |
| | | * @Description |
| | | */ |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper=false) |
| | | @Schema(name = "收据查询条件") |
| | | public class QoReceipt extends QueryConditionVo { |
| | | @Schema(description = "交易ID") |
| | | public Long operateId; |
| | | |
| | | @Schema(description = "农户姓名") |
| | | public String clientName; |
| | | |
| | | @Schema(description = "充值机时间_开始") |
| | | public String timeStart; |
| | | |
| | | @Schema(description = "充值机时间_结束") |
| | | public String timeStop; |
| | | |
| | | /** |
| | | * 是否仅存在赠送金额的 |
| | | */ |
| | | public Boolean onlyGift; |
| | | /** |
| | | * 收银员ID |
| | | */ |
| | | public String cashierId; |
| | | } |