EventDTO.java 303 B

1234567891011121314151617
  1. package nju.seec.helper.api.dataanalysis;
  2. import lombok.Data;
  3. import java.time.LocalDateTime;
  4. /**
  5. * @author cst
  6. */
  7. @Data
  8. public class EventDTO {
  9. private String userId;
  10. private EventType type;
  11. private LocalDateTime time;
  12. private EventAction action;
  13. private String description;
  14. }