From 28e699e3e1886ff4f08590857aaf08a62567c3f3 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期四, 07 十一月 2024 09:54:15 +0800
Subject: [PATCH] 新增 queue_sequence 表操作代码

---
 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
index 78f3cf2..661ee17 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
@@ -1,6 +1,8 @@
 package cn.lihu.jh.module.ecg.controller.admin.appointment.vo;
 
 import lombok.*;
+
+import java.time.LocalDate;
 import java.util.*;
 import io.swagger.v3.oas.annotations.media.Schema;
 import cn.lihu.jh.framework.common.pojo.PageParam;
@@ -22,10 +24,10 @@
     private String patName;
 
     @Schema(description = "鎮h�呮�у埆")
-    private Boolean patGender;
+    private Byte patGender;
 
     @Schema(description = "鎮h�呯敓鏃�")
-    private LocalDate patBirthday;
+    private LocalDateTime patBirthday;
 
     @Schema(description = "鎮h�呮墜鏈�")
     private String patMobile;
@@ -57,20 +59,23 @@
     @Schema(description = "棰勭害缂栧彿", example = "27849")
     private String bookId;
 
-    @Schema(description = "棰勭害妫�鏌ユ椂闂存")
-    private LocalDateTime bookPeriodStart;
+    @Schema(description = "棰勭害鏃ユ湡")
+    private LocalDate bookDate;
 
-    @Schema(description = "棰勭害妫�鏌ユ椂闂存")
-    private LocalDateTime bookPeriodEnd;
+    @Schema(description = "棰勭害鏃堕棿娈�")
+    private Integer bookTimeslot;
 
     @Schema(description = "棰勭害鍙戠敓鏃堕棿")
     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
     private LocalDateTime[] bookTime;
 
     @Schema(description = "棰勭害妫�鏌ョ被鍨�", example = "2")
-    private Boolean bookCheckType;
+    private Integer bookCheckType;
 
     @Schema(description = "棰勭害鏉ユ簮锛歑绯荤粺銆佹姢澹墜鍔ㄩ绾�")
     private String bookSrc;
 
+    @Schema(description = "宸蹭粯娆�")
+    private Integer paid;
+
 }
\ No newline at end of file

--
Gitblit v1.9.3