liusuyi
2026-06-01 3496700a5ba18be8ca0590a79e21a867782d1ea9
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
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;
 
}