EventMessage.java 526 B

123456789101112131415161718192021222324252627282930313233
  1. package cn.cslg.pas.domain.es;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. import lombok.Data;
  4. import java.util.List;
  5. @Data
  6. public class EventMessage {
  7. /**
  8. * code码
  9. */
  10. @JsonProperty("code")
  11. private String code;
  12. /**
  13. * 名称
  14. */
  15. @JsonProperty("name")
  16. private String name;
  17. /**
  18. * 描述
  19. */
  20. @JsonProperty("description")
  21. private String description;
  22. /**
  23. * 发生时间
  24. */
  25. @JsonProperty("event_date")
  26. private String eventDate;
  27. }