From e6ab9c2b7af85ac676ef9fbe616327eb20f04139 Mon Sep 17 00:00:00 2001
From: 16639036659 <577530412@qq.com>
Date: Mon, 11 Dec 2023 10:01:18 +0800
Subject: [PATCH] 暂时提交
---
src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskControlMeasure.java | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskControlMeasure.java b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskControlMeasure.java
index 04c60dd..715358e 100644
--- a/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskControlMeasure.java
+++ b/src/main/java/com/ruoyi/doublePrevention/entity/PreventRiskControlMeasure.java
@@ -1,5 +1,7 @@
package com.ruoyi.doublePrevention.entity;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.util.Date;
@@ -9,6 +11,7 @@
/**
* 主键
*/
+ @TableId(type = IdType.AUTO)
private Long id;
@@ -113,6 +116,26 @@
private String checkContent;
+ private String workType;
+
+ private String taskNum;
+
+ public String getWorkType() {
+ return workType;
+ }
+
+ public void setWorkType(String workType) {
+ this.workType = workType;
+ }
+
+ public String getTaskNum() {
+ return taskNum;
+ }
+
+ public void setTaskNum(String taskNum) {
+ this.taskNum = taskNum;
+ }
+
public Long getId() {
return id;
}
--
Gitblit v1.9.2