New file |
| | |
| | | package com.dy.pipIrrSell.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 2024-02-04 17:15 |
| | | * @LastEditTime 2024-02-04 17:15 |
| | | * @Description |
| | | */ |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ToString(callSuper = true) |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Builder |
| | | @Schema(name = "交易汇总查询条件") |
| | | public class QoSummary extends QueryConditionVo { |
| | | @Schema(description = "查询起始日期") |
| | | @NotBlank(message = "查询起始日期不能为空") |
| | | public String timeStart; |
| | | |
| | | @Schema(description = "查询截止日期") |
| | | @NotBlank(message = "查询截止日期不能为空") |
| | | public String timeStop; |
| | | |
| | | @Schema(description = "收银员ID") |
| | | @NotNull(message = "收银员不能为空") |
| | | public Long cashierId; |
| | | } |