| 1234567891011121314151617 |
- package nju.seec.helper.api.dataanalysis;
- import lombok.Data;
- import java.time.LocalDateTime;
- /**
- * @author cst
- */
- @Data
- public class EventDTO {
- private String userId;
- private EventType type;
- private LocalDateTime time;
- private EventAction action;
- private String description;
- }
|