From 72efbdfb7f79bacacc559e552f8076e292073d0f Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 23 四月 2024 16:45:49 +0800
Subject: [PATCH] 核算报告详情
---
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java | 151 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 151 insertions(+), 0 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java
new file mode 100644
index 0000000..f544566
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java
@@ -0,0 +1,151 @@
+package com.ycl.platform.domain.entity;
+
+import annotation.Excel;
+import com.ycl.system.entity.BaseEntity;
+import org.apache.commons.lang.builder.ToStringBuilder;
+import org.apache.commons.lang.builder.ToStringStyle;
+
+import java.math.BigDecimal;
+
+/**
+ * 鑰冩牳绉垎鏄庣粏瀵硅薄 t_check_score
+ *
+ * @author ruoyi
+ * @date 2024-04-01
+ */
+public class CheckScore extends BaseEntity
+{
+ private static final long serialVersionUID = 1L;
+
+ /** */
+ private Long id;
+
+ /** 鍒嗗�� */
+ @Excel(name = "鍒嗗��")
+ private BigDecimal score;
+
+ /** 鍖哄幙 */
+ @Excel(name = "鍖哄幙")
+ private Long deptId;
+
+ /** 鑰冩牳 */
+ @Excel(name = "鑰冩牳")
+ private Long publishId;
+
+ /** 瑙勫垯 */
+ @Excel(name = "瑙勫垯")
+ private Long ruleId;
+
+ /** 鑰冩牳绫诲瀷 */
+ @Excel(name = "鑰冩牳绫诲瀷")
+ private Long examineCategory;
+
+ /** */
+ private Long updateUser;
+
+ /** */
+ @Excel(name = "")
+ private String updateUserName;
+
+ /** */
+ @Excel(name = "")
+ private Long auditState;
+
+ public void setId(Long id)
+ {
+ this.id = id;
+ }
+
+ public Long getId()
+ {
+ return id;
+ }
+ public void setScore(BigDecimal score)
+ {
+ this.score = score;
+ }
+
+ public BigDecimal getScore()
+ {
+ return score;
+ }
+ public void setDeptId(Long deptId)
+ {
+ this.deptId = deptId;
+ }
+
+ public Long getDeptId()
+ {
+ return deptId;
+ }
+ public void setPublishId(Long publishId)
+ {
+ this.publishId = publishId;
+ }
+
+ public Long getPublishId()
+ {
+ return publishId;
+ }
+ public void setRuleId(Long ruleId)
+ {
+ this.ruleId = ruleId;
+ }
+
+ public Long getRuleId()
+ {
+ return ruleId;
+ }
+ public void setExamineCategory(Long examineCategory)
+ {
+ this.examineCategory = examineCategory;
+ }
+
+ public Long getExamineCategory()
+ {
+ return examineCategory;
+ }
+ public void setUpdateUser(Long updateUser)
+ {
+ this.updateUser = updateUser;
+ }
+
+ public Long getUpdateUser()
+ {
+ return updateUser;
+ }
+ public void setUpdateUserName(String updateUserName)
+ {
+ this.updateUserName = updateUserName;
+ }
+
+ public String getUpdateUserName()
+ {
+ return updateUserName;
+ }
+ public void setAuditState(Long auditState)
+ {
+ this.auditState = auditState;
+ }
+
+ public Long getAuditState()
+ {
+ return auditState;
+ }
+
+ @Override
+ public String toString() {
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
+ .append("id", getId())
+ .append("score", getScore())
+ .append("deptId", getDeptId())
+ .append("publishId", getPublishId())
+ .append("ruleId", getRuleId())
+ .append("examineCategory", getExamineCategory())
+ .append("createTime", getCreateTime())
+ .append("updateUser", getUpdateUser())
+ .append("updateUserName", getUpdateUserName())
+ .append("auditState", getAuditState())
+ .toString();
+ }
+}
--
Gitblit v1.8.0