From 32b4f6188f32e6c08e813efa98a25d94eacdc0c6 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期二, 02 四月 2024 09:32:29 +0800
Subject: [PATCH] Revert "新考核"
---
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/AccountingRules.java | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 102 insertions(+), 0 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/AccountingRules.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/AccountingRules.java
new file mode 100644
index 0000000..bed10cf
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/AccountingRules.java
@@ -0,0 +1,102 @@
+package com.ycl.platform.domain.entity;
+
+
+import annotation.Excel;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.ycl.system.entity.BaseEntity;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+
+import java.math.BigDecimal;
+
+/**
+ * 鏍哥畻瑙勫垯瀵硅薄 t_accounting_rules
+ *
+ * @author gonghl
+ * @date 2024-03-21
+ */
+public class AccountingRules extends BaseEntity {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * $column.columnComment
+ */
+ private Integer id;
+
+ /**
+ * 瑙勫垯鍚嶇О
+ */
+ @Excel(name = "瑙勫垯鍚嶇О")
+ private String rulesName;
+
+ /**
+ * 鍚堝悓鍚嶇О
+ */
+ @Excel(name = "鍚堝悓鍚嶇О")
+ private String contractName;
+
+ /**
+ * 閲戦
+ */
+ @Excel(name = "閲戦")
+ private BigDecimal amount;
+
+ /**
+ * 閫昏緫鍒犻櫎
+ */
+ @TableLogic
+ private String deleted;
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setRulesName(String rulesName) {
+ this.rulesName = rulesName;
+ }
+
+ public String getRulesName() {
+ return rulesName;
+ }
+
+ public void setContractName(String contractName) {
+ this.contractName = contractName;
+ }
+
+ public String getContractName() {
+ return contractName;
+ }
+
+ public void setAmount(BigDecimal amount) {
+ this.amount = amount;
+ }
+
+ public BigDecimal getAmount() {
+ return amount;
+ }
+
+ 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("rulesName", getRulesName())
+ .append("contractName", getContractName())
+ .append("amount", getAmount())
+ .append("createTime", getCreateTime())
+ .append("updateTime", getUpdateTime())
+ .append("deleted", getDeleted())
+ .toString();
+ }
+}
--
Gitblit v1.8.0