From ab09bd47d71edb0c03fd2b9bf02970f2f3310ed6 Mon Sep 17 00:00:00 2001 From: tqzhang <2452618307@qq.com> Date: Tue, 7 May 2024 16:48:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20src/main/java/com/bonus/au?= =?UTF-8?q?toweb/UI/entity/LogBean.java?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/bonus/autoweb/UI/entity/LogBean.java | 108 ------------------ 1 file changed, 108 deletions(-) delete mode 100644 src/main/java/com/bonus/autoweb/UI/entity/LogBean.java diff --git a/src/main/java/com/bonus/autoweb/UI/entity/LogBean.java b/src/main/java/com/bonus/autoweb/UI/entity/LogBean.java deleted file mode 100644 index ea92ad7..0000000 --- a/src/main/java/com/bonus/autoweb/UI/entity/LogBean.java +++ /dev/null @@ -1,108 +0,0 @@ -package com.bonus.autoweb.UI.entity; - -import lombok.Data; - -import java.io.Serializable; - -/** - * 日志实体类 - * @author zys - */ -@Data -public class LogBean implements Serializable { - - /** - * 天气 - */ - private String weather; - /** - * 最低气温 0/10 - */ - private String min_temperature; - - /** - * 最高气温 0/10 - */ - private String max_temperature; - - /** - * 事件检测标题 - */ - private String event_detection_title; - - /** - * 事件检测内容 - */ - private String event_detection_content; - - /** - * 保电工作标题 - */ - private String power_work_title; - - /** - * 保电工作内容 - */ - private String power_work_content; - - /** - * 资源核查情况标题 - */ - private String resource_check_title; - - /** - * 资源核查情况内容 - */ - private String resource_check_content; - - /** - * 通信测试标题 - */ - private String communications_test_title; - - /** - * 通信测试内容 - */ - private String communications_test_content; - - /** - * 日常操作情况标题 - */ - private String daily_operation_title; - - /** - * 日常操作情况内容 - */ - private String daily_operation_content; - - /** - * 日报提报情况标题 - */ - private String daily_submission_title; - - /** - * 日报提报情况内容 - */ - private String daily_submission_content; - - /** - * 预警处置标题 - */ - private String warning_disposal_title; - - /** - * 预警处置内容 - */ - private String warning_disposal_content; - - /** - * 一般记事标题 - */ - private String general_chronicles_title; - - /** - * 一般记事内容 - */ - private String general_chronicles_content; - -}