wisdomisite-java/src/main/java/com/zhgd/xmgl/base/HikvisionEventsPictureRq.java
2024-04-10 13:36:06 +08:00

34 lines
927 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.zhgd.xmgl.base;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class HikvisionEventsPictureRq {
/**
* 图片存储服务器唯一标识提供picUri处会提供此字段如49a6fec4-e368-428d-baff-4189a1383829
*/
private String svrIndexCode;
/**
* 图片的相对地址,如/pic?bd00=c002l7f-do061b*91ee599f-2857f96b7*571==sp**117==t1*7117827221l6*2111=5o9*41b-=37be87pi11do=0-f90040
*/
private String picUri;
/**
* 网络协议:
* “http”:HTTP协议
* “https”:HTTPS协议
* 参数不填优先返回https协议
*/
private String netProtocol;
public HikvisionEventsPictureRq(String svrIndex, String vehiclePicUrl) {
this.svrIndexCode = svrIndex;
this.picUri = vehiclePicUrl;
}
}