020ea372
Hugiee.Liu
fea: 测试接口添加
|
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
|
package com.objecteye.pojo.viid.subscribe;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.objecteye.pojo.viid.detail.FaceRequestObject;
import com.objecteye.pojo.viid.detail.MotorVehicleRequestObject;
import lombok.Data;
/**
* @author: liuhaoyu
* @date: 2023/7/6
*/
@Data
public class SubscribeNotification {
@JsonProperty("NotificationID")
private String notificationId;
@JsonProperty("SubscribeID")
private String subscribeId;
@JsonProperty("Title")
private String title;
@JsonProperty("TriggerTime")
private String triggerTime;
@JsonProperty("InfoIDs")
private String infoIds;
@JsonProperty("FaceListObject")
private FaceRequestObject.FaceListObject faceListObject;
@JsonProperty("MotorVehicleListObject")
private MotorVehicleRequestObject.MotorVehicleListObject motorVehicleListObject;
}
|