From c107112fcbe4262077d9f1fb6382e635d9c89dcc Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期二, 15 七月 2025 09:26:27 +0800 Subject: [PATCH] 视频监控URL增加一个路径参数&date=以备实现手动刷新 --- pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/general/qo/QoGeneral.java | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/general/qo/QoGeneral.java b/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/general/qo/QoGeneral.java new file mode 100644 index 0000000..fde1f9a --- /dev/null +++ b/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/general/qo/QoGeneral.java @@ -0,0 +1,34 @@ +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-24 20:25 + * @LastEditTime 2024-01-24 20:25 + * @Description + */ + +@Data +@EqualsAndHashCode(callSuper = false) +@ToString(callSuper = true) +@NoArgsConstructor +@AllArgsConstructor +@Builder +@Schema(name = "鎬昏处鏌ヨ鏉′欢") +public class QoGeneral extends QueryConditionVo { + @Schema(description = "鏀堕摱鍛樺鍚�") + public String cashierName; + + @Schema(description = "浜ゆ槗鏌ヨ璧峰鏃ユ湡") + public String operateDateStart; + + @Schema(description = "浜ゆ槗鏌ヨ鎴鏃ユ湡") + public String operateDateStop; + + @Schema(description = "瀹℃牳鐘舵��") + private Byte auditStatus; + +} -- Gitblit v1.8.0