From 3d1344ca6f0613bf3726d2c40d35f3928f82a910 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 15 九月 2025 18:15:27 +0800
Subject: [PATCH] 代码提交
---
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/QueueRespVO.java | 37 ++++++++++++++++++++++++++++++++-----
1 files changed, 32 insertions(+), 5 deletions(-)
diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/QueueRespVO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/QueueRespVO.java
index fa5633b..3e17185 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/QueueRespVO.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/QueueRespVO.java
@@ -1,10 +1,14 @@
package cn.lihu.jh.module.ecg.controller.admin.queue.vo;
+import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails;
+import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.time.LocalDate;
import java.time.LocalDateTime;
+import java.util.Map;
+
import com.alibaba.excel.annotation.*;
@Schema(description = "绠$悊鍚庡彴 - 鎺掗槦 Response VO")
@@ -12,21 +16,33 @@
@ExcelIgnoreUnannotated
public class QueueRespVO {
- @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320")
+ @Schema(description = "id", example = "21320")
@ExcelProperty("id")
private Integer id;
- @Schema(description = "鎮h�呯紪鍙�", requiredMode = Schema.RequiredMode.REQUIRED, example = "30473")
+ @Schema(description = "棰勭害鐢宠鍙�", example = "2024435")
+ @ExcelProperty("棰勭害鐢宠鍙�")
+ private String applyNo;
+
+ @Schema(description = "灏辫瘖娴佹按鍙�", example = "2024435")
+ @ExcelProperty("灏辫瘖娴佹按鍙�")
+ private String episodeId;
+
+ @Schema(description = "鎮h�呯紪鍙�", example = "30473")
@ExcelProperty("鎮h�呯紪鍙�")
private String patId;
- @Schema(description = "鎮h�呭鍚�", requiredMode = Schema.RequiredMode.REQUIRED, example = "鑺嬭壙")
+ @Schema(description = "鎮h�呭鍚�", example = "鑺嬭壙")
@ExcelProperty("鎮h�呭鍚�")
private String patName;
@Schema(description = "鎮h�呮�у埆")
@ExcelProperty("鎮h�呮�у埆")
private Byte patGender;
+
+ @Schema(description = "鎮h�呰鎯�")
+ @ExcelProperty("鎮h�呰鎯�")
+ private PatDetails patDetails;
@Schema(description = "棰勭害鏃ユ湡")
@ExcelProperty("棰勭害鏃ユ湡")
@@ -40,13 +56,21 @@
@ExcelProperty("棰勭害妫�鏌ョ被鍨�")
private Integer bookCheckType;
+ @Schema(description = "棰勭害搴忓彿")
+ @ExcelProperty("棰勭害搴忓彿")
+ private Integer bookSeqNum;
+
@Schema(description = "鎺掗槦搴忓彿", requiredMode = Schema.RequiredMode.REQUIRED)
@ExcelProperty("鎺掗槦搴忓彿")
private Integer seqNum;
+ @Schema(description = "VIP")
+ @ExcelProperty("VIP")
+ private Integer isVip;
+
@Schema(description = "5:杩囧彿 10:鎺掗槦涓� 15:宸插彫鍥� 20:鍊欒瘖鍑嗗 30:灏辫瘖涓� 40:灏辫瘖瀹屾垚 ", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
@ExcelProperty("5:杩囧彿 10:鎺掗槦涓� 15:宸插彫鍥� 20:鍊欒瘖鍑嗗 30:灏辫瘖涓� 40:灏辫瘖瀹屾垚 ")
- private Byte status;
+ private Integer status;
@Schema(description = "杩囧彿鏍囪", requiredMode = Schema.RequiredMode.REQUIRED)
@ExcelProperty("杩囧彿鏍囪")
@@ -76,4 +100,7 @@
@ExcelProperty("鍒涘缓鏃堕棿")
private LocalDateTime createTime;
-}
\ No newline at end of file
+ @TableField(exist = false)
+ private String tolerance;
+
+}
--
Gitblit v1.9.3