From 33f598c60845d2e08ed75b65f4bd61c42cef110f Mon Sep 17 00:00:00 2001
From: zqy <252236926@qq.com>
Date: 星期一, 09 六月 2025 17:09:59 +0800
Subject: [PATCH] 修改权限问题
---
zhang-content/src/main/java/com/ruoyi/domain/ZfPet.java | 63 +++++++++++++++++++++++++++++--
1 files changed, 59 insertions(+), 4 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 7cba7ea..8dd4acf 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,7 +29,7 @@
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
- private Long id;
+ private String id;
/**
* 瀹犵墿鍙风爜
@@ -47,6 +48,9 @@
*/
@Excel(name = "瀹犵墿鍝佺")
private String type;
+
+ @Excel(name = "瀹犵墿绫诲瀷")
+ private String animal;
/**
* 瀹犵墿鍚嶇О
@@ -82,14 +86,20 @@
/**
* 楗涔犳儻
*/
- @Excel(name = "楗涔犳儻")
+ @Excel(name = "楗涔犳儻(鍠滃ソ)")
private String eatHabit;
/**
* 鐢熸椿涔犳儻
*/
- @Excel(name = "鐢熸椿涔犳儻")
+ @Excel(name = "鐢熸椿涔犳儻(鍠滃ソ)")
private String lifeHabit;
+
+ @Excel(name = "楗涔犳儻(鍘屾伓)")
+ private String disEatHabit;
+
+ @Excel(name = "鐢熸椿涔犳儻(鍘屾伓)")
+ private String disLifeHabit;
/**
* 鐘眳浣忓湴鍧�
@@ -103,6 +113,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