• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / LYG_Project2

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • LYG_Project2
  • ..
  • schema
  • DetectionResult.java
  • 권주희's avatar
    add pyspark, java_spark code · 05e48506
    05e48506
    권주희 authored 2020-06-14 20:20:09 +0900
DetectionResult.java 340 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package schema;

import lombok.*;
import org.apache.arrow.flatbuf.Bool;

@Setter
@Getter
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class DetectionResult {
//    String data;
    String eventTimestamp;
    String userId;
    Boolean fireDetected;
    Boolean unknownDetected;
    String processedTimestamp;
}