From 86d65e6f837ff14b090ffc3312c013987b6f67d8 Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期二, 14 十月 2025 21:59:13 +0800
Subject: [PATCH] 荣誉 新增两个字段的查询
---
zhang-content/src/main/java/com/ruoyi/domain/ZAutobiography.java | 153 +++++----------------------------------------------
1 files changed, 15 insertions(+), 138 deletions(-)
diff --git a/zhang-content/src/main/java/com/ruoyi/domain/ZAutobiography.java b/zhang-content/src/main/java/com/ruoyi/domain/ZAutobiography.java
index 16a6f46..5a294c6 100644
--- a/zhang-content/src/main/java/com/ruoyi/domain/ZAutobiography.java
+++ b/zhang-content/src/main/java/com/ruoyi/domain/ZAutobiography.java
@@ -3,6 +3,8 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+
import java.io.Serializable;
/**
@@ -13,167 +15,42 @@
* @author ojq
* @since 2023-03-14
*/
+@Data
@TableName("z_autobiography")
public class ZAutobiography implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
- private Integer id;
+ private Long id;
/**
* 鐢ㄦ埛id
*/
- private Integer userId;
+ private Long userId;
/**
- * 濠村効鏈�
+ * 鏃舵湡
*/
- private String infancy;
+ private String term;
/**
- * 骞煎効鏈�
+ * 鑷紶鍐呭
*/
- private String childhood;
+ private String content;
/**
- * 灏忓
+ * 寮�濮嬪勾榫�
*/
- private String pri;
+ private String ageBegin;
/**
- * 鍒濅腑
+ * 缁撴潫骞撮緞
*/
- private String mid;
+ private String ageEnd;
/**
- * 楂樹腑
+ * 鍒嗕韩浜�
*/
- private String senior;
-
- /**
- * 澶у
- */
- private String college;
-
- /**
- * 鐮旂┒鐢�
- */
- private String postgraduate;
-
- /**
- * 宸ヤ綔
- */
- private String job;
-
- /**
- * 缁撳
- */
- private String marry;
-
-
- public Integer getId() {
- return id;
- }
-
- public void setId(Integer id) {
- this.id = id;
- }
-
- public Integer getUserId() {
- return userId;
- }
-
- public void setUserId(Integer userId) {
- this.userId = userId;
- }
-
- public String getInfancy() {
- return infancy;
- }
-
- public void setInfancy(String infancy) {
- this.infancy = infancy;
- }
-
- public String getChildhood() {
- return childhood;
- }
-
- public void setChildhood(String childhood) {
- this.childhood = childhood;
- }
-
- public String getPri() {
- return pri;
- }
-
- public void setPri(String pri) {
- this.pri = pri;
- }
-
- public String getMid() {
- return mid;
- }
-
- public void setMid(String mid) {
- this.mid = mid;
- }
-
- public String getSenior() {
- return senior;
- }
-
- public void setSenior(String senior) {
- this.senior = senior;
- }
-
- public String getCollege() {
- return college;
- }
-
- public void setCollege(String college) {
- this.college = college;
- }
-
- public String getPostgraduate() {
- return postgraduate;
- }
-
- public void setPostgraduate(String postgraduate) {
- this.postgraduate = postgraduate;
- }
-
- public String getJob() {
- return job;
- }
-
- public void setJob(String job) {
- this.job = job;
- }
-
- public String getMarry() {
- return marry;
- }
-
- public void setMarry(String marry) {
- this.marry = marry;
- }
-
- @Override
- public String toString() {
- return "ZAutobiography{" +
- "id=" + id +
- ", userId=" + userId +
- ", infancy=" + infancy +
- ", childhood=" + childhood +
- ", pri=" + pri +
- ", mid=" + mid +
- ", senior=" + senior +
- ", college=" + college +
- ", postgraduate=" + postgraduate +
- ", job=" + job +
- ", marry=" + marry +
- "}";
- }
+ private Integer shareId;
}
--
Gitblit v1.9.1