1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.fengdu.gas.entity.search;
|
| import lombok.Data;
|
| import com.fengdu.gas.entity.dto.SearchBasicDTO;
|
| /**
| * 设备报警记录
| * @author zr
| */
| @Data
| public class SearchFacilityAlarmRecord extends SearchBasicDTO {
| /**
| *1本日 2本月 3本年
| */
| private Integer dateType;
| }
|
|