package com.ycl.domain.query;
|
|
/**
|
* 摄像头点播
|
*
|
* @author:xp
|
* @date:2024/12/20 11:35
|
*/
|
public class CameraPlayQuery {
|
|
/**
|
* 摄像机编码
|
*
|
*/
|
private String indexCode;
|
|
/**
|
* 返回地址的协议
|
*
|
*/
|
private String protocol;
|
|
|
public String getIndexCode() {
|
return indexCode;
|
}
|
|
public void setIndexCode(String indexCode) {
|
this.indexCode = indexCode;
|
}
|
|
public String getProtocol() {
|
return protocol;
|
}
|
|
public void setProtocol(String protocol) {
|
this.protocol = protocol;
|
}
|
}
|