From 7ea5eece501c98a91555a5358931367e78e9d23b Mon Sep 17 00:00:00 2001
From: baizonghao <1719256278@qq.com>
Date: 星期四, 25 五月 2023 15:40:09 +0800
Subject: [PATCH] 11

---
 src/main/java/com/example/jz/modle/entity/Cause.java |   34 ++++++++++++++++++++++------------
 1 files changed, 22 insertions(+), 12 deletions(-)

diff --git a/src/main/java/com/example/jz/modle/entity/Cause.java b/src/main/java/com/example/jz/modle/entity/Cause.java
index 3469987..c0f3a71 100644
--- a/src/main/java/com/example/jz/modle/entity/Cause.java
+++ b/src/main/java/com/example/jz/modle/entity/Cause.java
@@ -1,11 +1,11 @@
 package com.example.jz.modle.entity;
 
-import java.util.Date;
-
-import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
 import com.baomidou.mybatisplus.extension.activerecord.Model;
+import lombok.Data;
+
 import java.io.Serializable;
+import java.util.Date;
 
 /**
  * 妗堜欢琛�(Cause)琛ㄥ疄浣撶被
@@ -25,13 +25,14 @@
     private Date firstTime;
     //鍒涘缓鏃堕棿
     private Date ctime;
-    //鐘舵�� 0鏈鏍� 1涓嶄簣绔嬫 2鍙楃悊涓� 3宸茬粨妗�
-    private String status;
+    //鐘舵��  0绔嬫 1鍒濇煡 2鍙楃悊 3绉婚�佽捣璇� 4缁撴
+    private Integer status;
     //璐熻矗浜篿d
     private Integer userId;
     //妗堜欢鎻忚堪
     private String description;
 
+    private String totalMoney;
 
     public Integer getId() {
         return id;
@@ -73,13 +74,6 @@
         this.ctime = ctime;
     }
 
-    public String getStatus() {
-        return status;
-    }
-
-    public void setStatus(String status) {
-        this.status = status;
-    }
 
     public Integer getUserId() {
         return userId;
@@ -97,6 +91,14 @@
         this.description = description;
     }
 
+    public String getTotalMoney() {
+        return totalMoney;
+    }
+
+    public void setTotalMoney(String totalMoney) {
+        this.totalMoney = totalMoney;
+    }
+
     /**
      * 鑾峰彇涓婚敭鍊�
      *
@@ -106,5 +108,13 @@
     protected Serializable pkVal() {
         return this.id;
     }
+
+    public Integer getStatus() {
+        return status;
     }
 
+    public void setStatus(Integer status) {
+        this.status = status;
+    }
+}
+

--
Gitblit v1.8.0