From 97d9b0723841a0e9da10a3ecb64351efb5d7a8c2 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期五, 29 十一月 2024 13:27:13 +0800
Subject: [PATCH] 界面 条码显示控制
---
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/QueueRespVO.java | 27 +++++++++++++++++++++++----
1 files changed, 23 insertions(+), 4 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 6969287..88ce74a 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,13 @@
package cn.lihu.jh.module.ecg.controller.admin.queue.vo;
+import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails;
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,15 +15,23 @@
@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;
@@ -30,7 +41,7 @@
@Schema(description = "鎮h�呰鎯�")
@ExcelProperty("鎮h�呰鎯�")
- private String patDetails;
+ private PatDetails patDetails;
@Schema(description = "棰勭害鏃ユ湡")
@ExcelProperty("棰勭害鏃ユ湡")
@@ -44,10 +55,18 @@
@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 Integer status;
--
Gitblit v1.9.3