SubscribeNotificationsObj.java
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.viontech.vo.gb1400;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class SubscribeNotificationsObj {
@JSONField(name = "SubscribeNotificationListObject")
private SubscribeNotificationListObject subscribeNotificationListObject;
@Data
public static class SubscribeNotificationListObject {
@JSONField(name = "SubscribeNotificationObject")
private List<SubscribeNotificationObject> subscribeNotificationObjects;
}
@Data
public static class SubscribeNotificationObject {
@JSONField(name = "NotificationID")
private String NotificationID;
@JSONField(name = "SubscribeID")
private String SubscribeID;
@JSONField(name = "Title")
private String Title;
@JSONField(name = "TriggerTime")
private String TriggerTime;
@JSONField(name = "InfoIDs")
private String InfoIDs;
@JSONField(name = "MotorVehicleObjectList")
private MotorVehicleObj MotorVehicleObjectList;
@JSONField(name = "DeviceList")
private APEList DeviceList;
@JSONField(name = "TollgateObjectList")
private TollgateList TollgateObjectList;
@JSONField(name = "LaneObjectList")
private LaneList LaneObjectList;
}
}