From ee46b0eda807780b245ddeef051e7684118bc814 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期四, 18 四月 2024 10:47:20 +0800
Subject: [PATCH] 工单下发:下发记录增加下发状态
---
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultPublish.java | 139 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 139 insertions(+), 0 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultPublish.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultPublish.java
new file mode 100644
index 0000000..39a0dc9
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultPublish.java
@@ -0,0 +1,139 @@
+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_default_publish
+ *
+ * @author ruoyi
+ * @date 2024-04-01
+ */
+public class DefaultPublish extends BaseEntity
+{
+ private static final long serialVersionUID = 1L;
+
+ /** */
+ private Long id;
+
+ /** 鑰冩牳鍚嶇О */
+ @Excel(name = "鑰冩牳鍚嶇О")
+ private String examineName;
+
+ /** */
+ @Excel(name = "")
+ private Long templateId;
+
+ /** 棰戠巼 */
+ @Excel(name = "棰戠巼")
+ private Long frequency;
+
+ /** 鎶ヨ鍒嗘暟 */
+ @Excel(name = "鎶ヨ鍒嗘暟")
+ private BigDecimal alarmScore;
+
+ /** 鍚堝悓鑰冩牳鎻忚堪 */
+ @Excel(name = "鍚堝悓鑰冩牳鎻忚堪")
+ private String description;
+
+ /** 鍚敤/鍋滅敤 */
+ @Excel(name = "鍚敤/鍋滅敤")
+ private Long state;
+
+ /** 瀹℃牳鐘舵�� */
+ @Excel(name = "瀹℃牳鐘舵��")
+ private Long auditState;
+
+ public void setId(Long id)
+ {
+ this.id = id;
+ }
+
+ public Long getId()
+ {
+ return id;
+ }
+ public void setExamineName(String examineName)
+ {
+ this.examineName = examineName;
+ }
+
+ public String getExamineName()
+ {
+ return examineName;
+ }
+ public void setTemplateId(Long templateId)
+ {
+ this.templateId = templateId;
+ }
+
+ public Long getTemplateId()
+ {
+ return templateId;
+ }
+ public void setFrequency(Long frequency)
+ {
+ this.frequency = frequency;
+ }
+
+ public Long getFrequency()
+ {
+ return frequency;
+ }
+ public void setAlarmScore(BigDecimal alarmScore)
+ {
+ this.alarmScore = alarmScore;
+ }
+
+ public BigDecimal getAlarmScore()
+ {
+ return alarmScore;
+ }
+ public void setDescription(String description)
+ {
+ this.description = description;
+ }
+
+ public String getDescription()
+ {
+ return description;
+ }
+ public void setState(Long state)
+ {
+ this.state = state;
+ }
+
+ public Long getState()
+ {
+ return state;
+ }
+ 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("examineName", getExamineName())
+ .append("templateId", getTemplateId())
+ .append("frequency", getFrequency())
+ .append("alarmScore", getAlarmScore())
+ .append("description", getDescription())
+ .append("state", getState())
+ .append("auditState", getAuditState())
+ .append("createTime", getCreateTime())
+ .append("updateTime", getUpdateTime())
+ .toString();
+ }
+}
--
Gitblit v1.8.0