All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.lunasaw.gb28181.common.entity.control.DeviceControlBase Maven / Gradle / Ivy

The newest version!
package io.github.lunasaw.gb28181.common.entity.control;

import io.github.lunasaw.gb28181.common.entity.base.DeviceBase;
import lombok.Getter;
import lombok.Setter;

import javax.xml.bind.annotation.XmlElement;

/**
 * @author luna
 */
@Getter
@Setter
public class DeviceControlBase extends DeviceBase {

    @XmlElement(name = "ControlType")
    private String controlType;

    public DeviceControlBase() {
    }

    public DeviceControlBase(String cmdType, String sn, String deviceId) {
        super(cmdType, sn, deviceId);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy