From ab4e150d41e0200b64a75c59b668a9385b7782fd Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 23 四月 2024 10:18:03 +0800
Subject: [PATCH] 表名修改

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CalculateRule.java |  122 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 122 insertions(+), 0 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CalculateRule.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CalculateRule.java
new file mode 100644
index 0000000..3439154
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CalculateRule.java
@@ -0,0 +1,122 @@
+package com.ycl.platform.domain.entity;
+
+import annotation.Excel;
+import com.ycl.system.domain.TreeEntity;
+import org.apache.commons.lang.builder.ToStringBuilder;
+import org.apache.commons.lang.builder.ToStringStyle;
+
+/**
+ * 鍒嗘暟鏍哥畻瑙勫垯瀵硅薄 t_default_rule
+ *
+ * @author ruoyi
+ * @date 2024-04-01
+ */
+public class CalculateRule extends TreeEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 涓婚敭 */
+    private Long id;
+
+    /** 瑙勫垯鍚嶇О */
+    @Excel(name = "瑙勫垯鍚嶇О")
+    private String ruleName;
+
+    /** 鎵e噺鏂瑰紡 */
+    @Excel(name = "鎵e噺鏂瑰紡")
+    private Long deductCategory;
+
+    /** 浜哄伐鎵撳垎/绯荤粺鎵撳垎 */
+    private Long deductWay;
+
+    /** 瑙勫垯鎻忚堪 */
+    @Excel(name = "瑙勫垯鎻忚堪")
+    private String ruleDesc;
+
+    /** 瑙勫垯鐘舵�� */
+    @Excel(name = "瑙勫垯鐘舵��")
+    private String ruleStatus;
+
+    /** 閫昏緫鍒犻櫎 */
+    private String deleted;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setRuleName(String ruleName)
+    {
+        this.ruleName = ruleName;
+    }
+
+    public String getRuleName()
+    {
+        return ruleName;
+    }
+    public void setDeductCategory(Long deductCategory)
+    {
+        this.deductCategory = deductCategory;
+    }
+
+    public Long getDeductCategory()
+    {
+        return deductCategory;
+    }
+    public void setDeductWay(Long deductWay)
+    {
+        this.deductWay = deductWay;
+    }
+
+    public Long getDeductWay()
+    {
+        return deductWay;
+    }
+    public void setRuleDesc(String ruleDesc)
+    {
+        this.ruleDesc = ruleDesc;
+    }
+
+    public String getRuleDesc()
+    {
+        return ruleDesc;
+    }
+    public void setRuleStatus(String ruleStatus)
+    {
+        this.ruleStatus = ruleStatus;
+    }
+
+    public String getRuleStatus()
+    {
+        return ruleStatus;
+    }
+    public void setDeleted(String deleted)
+    {
+        this.deleted = deleted;
+    }
+
+    public String getDeleted()
+    {
+        return deleted;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("ruleName", getRuleName())
+            .append("parentId", getParentId())
+            .append("deductCategory", getDeductCategory())
+            .append("deductWay", getDeductWay())
+            .append("ruleDesc", getRuleDesc())
+            .append("ruleStatus", getRuleStatus())
+            .append("createTime", getCreateTime())
+            .append("updateTime", getUpdateTime())
+            .append("deleted", getDeleted())
+            .toString();
+    }
+}

--
Gitblit v1.8.0