From 28cf0afe5cb951bf34a60a1ee0f36d38c592a8c0 Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期二, 09 十二月 2025 11:10:29 +0800
Subject: [PATCH] 新增搜索 不选模块进行全局搜索 获取每个模块
---
zhang-content/src/main/java/com/ruoyi/domain/ZfDoctor.java | 35 ++++++++++++++++++++++++++++++++++-
1 files changed, 34 insertions(+), 1 deletions(-)
diff --git a/zhang-content/src/main/java/com/ruoyi/domain/ZfDoctor.java b/zhang-content/src/main/java/com/ruoyi/domain/ZfDoctor.java
index afa9cb8..76a3bc6 100644
--- a/zhang-content/src/main/java/com/ruoyi/domain/ZfDoctor.java
+++ b/zhang-content/src/main/java/com/ruoyi/domain/ZfDoctor.java
@@ -1,6 +1,7 @@
package com.ruoyi.domain;
import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
@@ -13,7 +14,7 @@
/**
* <p>
- *
+ *
* </p>
*
* @author ojq
@@ -28,6 +29,8 @@
@TableId(value = "id", type = IdType.AUTO)
private Long id;
+
+ private String fileName;
/**
* 鐥呯殑绫诲瀷
@@ -46,6 +49,12 @@
*/
@Excel(name = "鎸佺画鏃堕棿")
private String duration;
+
+ /**
+ * 澶勬柟
+ */
+ @TableField(exist = false)
+ private String prescription;
/**
* 涓尰
@@ -82,4 +91,28 @@
@JsonFormat(pattern = "yyyy-MM-dd")
private Date createTime;
+ private Long familyId;
+
+ @TableField(exist = false)
+ private Integer ownData;
+
+ private Long shareId;
+
+ /**
+ * 鍙備笌鑰�
+ */
+ private String companion;
+
+
+ /**
+ * 寮�濮嬫椂闂�
+ */
+ @TableField(exist = false)
+ private Date happenStartTime;
+
+ /**
+ * 缁撴潫鏃堕棿
+ */
+ @TableField(exist = false)
+ private Date happenEndTime;
}
--
Gitblit v1.9.1