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; - -}