io.github.lunasaw.gb28181.common.entity.control.DeviceControlIFame Maven / Gradle / Ivy
The newest version!
package io.github.lunasaw.gb28181.common.entity.control;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import lombok.*;
/**
* @author luna
*/
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@XmlRootElement(name = "Control")
@XmlAccessorType(XmlAccessType.FIELD)
public class DeviceControlIFame extends DeviceControlBase {
@XmlElement(name = "IFameCmd")
public String iFameCmd;
public DeviceControlIFame(String cmdType, String sn, String deviceId) {
super(cmdType, sn, deviceId);
this.setControlType("IFameCmd");
}
}