AlarmStatisticResVo.java 555 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.ozs.entity.vo;
  2. import com.ozs.common.vo.PageVo;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * 统计管理页面强求参数
  7. *
  8. * @author wyy
  9. * @subject
  10. * @creat 2023/3/6
  11. */
  12. @Data
  13. public class AlarmStatisticResVo extends PageVo implements Serializable {
  14. /**
  15. * 线路
  16. */
  17. private String railwayCode;
  18. /**
  19. * 当前年份
  20. */
  21. private Integer currentYear;
  22. /**
  23. * 当前月份
  24. */
  25. private Integer currentMonth;
  26. /**
  27. * 灾害类型
  28. */
  29. private String alarmType;
  30. }