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 | 127 ++++++++++++++++++++----------------------
1 files changed, 60 insertions(+), 67 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 94a7c0c..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,38 +1,38 @@
package com.example.jz.modle.entity;
-import java.util.Date;
+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)琛ㄥ疄浣撶被
+ * 妗堜欢琛�(Cause)琛ㄥ疄浣撶被
*
* @author makejava
- * @since 2022-07-11 16:55:40
+ * @since 2022-07-13 11:52:57
*/
-@SuppressWarnings("serial")
+@TableName("qyjz.cause")
public class Cause extends Model<Cause> {
- //妗堜欢ID
+ //id
private Integer id;
- //澶村儚鍦板潃
- private String pic;
- //鎶ユ浜�
- private String reporter;
- //鎶ユ浜烘墜鏈哄彿
- private String mobile;
- //鎶ユ浜鸿韩浠借瘉鍙�
- private String idcard;
- //鏄惁浠e姙 Y锛堜唬鍔烇級 N锛堜笉鏄唬鍔烇級
- private String isCommission;
- //娑夋閲戦
- private String amountInvolved;
- //鎶ユ鏉愭枡鍥剧墖鍦板潃 澶氫釜鐢�,鍒嗛殧
- private String reportMaterials;
- //鎶ユ鏃堕棿
- private Date reportTime;
- //鎶ユ鏂瑰紡
- private String reportMethod;
+ //妗堜欢缂栧彿
+ private String number;
+ //妗堜欢鍚嶇О
+ private String name;
+ //绗竴娆℃鍙戞椂闂�
+ private Date firstTime;
+ //鍒涘缓鏃堕棿
+ private Date ctime;
+ //鐘舵�� 0绔嬫 1鍒濇煡 2鍙楃悊 3绉婚�佽捣璇� 4缁撴
+ private Integer status;
+ //璐熻矗浜篿d
+ private Integer userId;
+ //妗堜欢鎻忚堪
+ private String description;
+ private String totalMoney;
public Integer getId() {
return id;
@@ -42,76 +42,61 @@
this.id = id;
}
- public String getPic() {
- return pic;
+ public String getNumber() {
+ return number;
}
- public void setPic(String pic) {
- this.pic = pic;
+ public void setNumber(String number) {
+ this.number = number;
}
- public String getReporter() {
- return reporter;
+ public String getName() {
+ return name;
}
- public void setReporter(String reporter) {
- this.reporter = reporter;
+ public void setName(String name) {
+ this.name = name;
}
- public String getMobile() {
- return mobile;
+ public Date getFirstTime() {
+ return firstTime;
}
- public void setMobile(String mobile) {
- this.mobile = mobile;
+ public void setFirstTime(Date firstTime) {
+ this.firstTime = firstTime;
}
- public String getIdcard() {
- return idcard;
+ public Date getCtime() {
+ return ctime;
}
- public void setIdcard(String idcard) {
- this.idcard = idcard;
+ public void setCtime(Date ctime) {
+ this.ctime = ctime;
}
- public String getIsCommission() {
- return isCommission;
+
+ public Integer getUserId() {
+ return userId;
}
- public void setIsCommission(String isCommission) {
- this.isCommission = isCommission;
+ public void setUserId(Integer userId) {
+ this.userId = userId;
}
- public String getAmountInvolved() {
- return amountInvolved;
+ public String getDescription() {
+ return description;
}
- public void setAmountInvolved(String amountInvolved) {
- this.amountInvolved = amountInvolved;
+ public void setDescription(String description) {
+ this.description = description;
}
- public String getReportMaterials() {
- return reportMaterials;
+ public String getTotalMoney() {
+ return totalMoney;
}
- public void setReportMaterials(String reportMaterials) {
- this.reportMaterials = reportMaterials;
- }
-
- public Date getReportTime() {
- return reportTime;
- }
-
- public void setReportTime(Date reportTime) {
- this.reportTime = reportTime;
- }
-
- public String getReportMethod() {
- return reportMethod;
- }
-
- public void setReportMethod(String reportMethod) {
- this.reportMethod = reportMethod;
+ public void setTotalMoney(String totalMoney) {
+ this.totalMoney = totalMoney;
}
/**
@@ -123,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