You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package com.inspect.tcpserver.sip.items;
|
|
|
|
|
|
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
/**
|
|
|
* 图片抓拍请求信令
|
|
|
*/
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class DeviceInfoItem {
|
|
|
@JacksonXmlProperty(isAttribute = true, localName = "CmdType")
|
|
|
private String cmdType;
|
|
|
|
|
|
@JacksonXmlProperty(isAttribute = true, localName = "sn")
|
|
|
private String sn;
|
|
|
|
|
|
@JacksonXmlProperty(isAttribute = true, localName = "DeviceID")
|
|
|
private String deviceID;
|
|
|
}
|