123456789101112131415161718192021222324252627282930313233343536 |
- package com.ozs.entity.vo;
- import com.ozs.common.vo.PageVo;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * 统计管理页面强求参数
- *
- * @author wyy
- * @subject
- * @creat 2023/3/6
- */
- @Data
- public class AlarmStatisticResVo extends PageVo implements Serializable {
- /**
- * 线路
- */
- private String railwayCode;
- /**
- * 当前年份
- */
- private Integer currentYear;
- /**
- * 当前月份
- */
- private Integer currentMonth;
- /**
- * 灾害类型
- */
- private String alarmType;
- }
|