io.github.lunasaw.gb28181.common.entity.notify.MediaStatusNotify Maven / Gradle / Ivy
The newest version!
package io.github.lunasaw.gb28181.common.entity.notify;
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 io.github.lunasaw.gb28181.common.entity.base.DeviceBase;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
*
*
* MediaStatus
* 226063
* 12312
* 121
*
* @author luna
*/
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@XmlRootElement(name = "Notify")
@XmlAccessorType(XmlAccessType.FIELD)
public class MediaStatusNotify extends DeviceBase {
@XmlElement(name = "NotifyType")
private String notifyType;
public MediaStatusNotify(String cmdType, String sn, String deviceId) {
super(cmdType, sn, deviceId);
}
}