package com.ard.work.sdk.zlxd.netty.message.response;
|
|
import com.ard.work.sdk.zlxd.netty.message.parameters.CameraParameters;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
/**
|
* 类描述:获取通用摄像头参数响应
|
*
|
* @author lsy
|
* @since 2026/2/2 9:14
|
*/
|
@EqualsAndHashCode(callSuper = true)
|
@Data
|
@XmlRootElement(name = "Message") // 根节点与父类一致
|
@XmlAccessorType(XmlAccessType.FIELD)
|
public class GetGeneralCameraParaResponse extends BaseXmlResponse{
|
@XmlElement(name = "parameters")
|
private CameraParameters parameters;
|
|
}
|