From cedaeeed6d401aefebf93ea6ea21cc9e06d5f5db Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期二, 02 十二月 2025 10:36:48 +0800
Subject: [PATCH] 新增搜索 模块+同伴+时间
---
zhang-content/src/main/java/com/ruoyi/domain/ZfPet.java | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 52 insertions(+), 2 deletions(-)
diff --git a/zhang-content/src/main/java/com/ruoyi/domain/ZfPet.java b/zhang-content/src/main/java/com/ruoyi/domain/ZfPet.java
index 9ae3d69..bce44bb 100644
--- a/zhang-content/src/main/java/com/ruoyi/domain/ZfPet.java
+++ b/zhang-content/src/main/java/com/ruoyi/domain/ZfPet.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;
@@ -28,8 +29,9 @@
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
- private Long id;
+ private String id;
+ private String fileName;
/**
* 瀹犵墿鍙风爜
*/
@@ -47,6 +49,9 @@
*/
@Excel(name = "瀹犵墿鍝佺")
private String type;
+
+ @Excel(name = "瀹犵墿绫诲瀷")
+ private String animal;
/**
* 瀹犵墿鍚嶇О
@@ -109,6 +114,51 @@
@Excel(name = "鑳藉惉鎳傜殑鏂硅█")
private String dialect;
- private String url;
+ private Long familyId;
+
+ @TableField(exist = false)
+ private Integer ownData;
+
+
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date createTime;
+
+ /**
+ * 澶村儚
+ */
+ private String headPicture;
+
+ /**
+ * 鍏ㄨ韩鐓�
+ */
+ private String fullPicture;
+
+ //浠ヤ笅鏄富浜轰俊鎭�
+
+ @Excel(name = "涓讳汉鍚嶅瓧")
+ private String masterName;
+
+ @Excel(name = "涓讳汉璇佷欢鍙风爜")
+ private String masterIdNum;
+
+ @Excel(name = "涓讳汉鐢佃瘽鍙风爜")
+ private String phone;
+
+ @Excel(name = "涓讳汉鍦板潃")
+ private String masterAddress;
+
+ @TableField(exist = false)
+ @Excel(name = "鍑虹敓鏃ユ湡", dateFormat = "yyyy-MM-dd")
+ private Date birthStart;
+
+ @TableField(exist = false)
+ @Excel(name = "鍑虹敓鏃ユ湡", dateFormat = "yyyy-MM-dd")
+ private Date birthEnd;
+
+ /**
+ * 鍒嗕韩浜篿d
+ */
+ private Integer shareId;
+
}
--
Gitblit v1.9.1