临时提交
This commit is contained in:
@@ -15,5 +15,7 @@ public class InviteInfo {
|
||||
private Long startTime;
|
||||
private Long stopTime;
|
||||
private String downloadSpeed;
|
||||
private String ip;
|
||||
private int port;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.genersoft.iot.vmp.gb28181.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class PlayException extends RuntimeException{
|
||||
private int code;
|
||||
private String msg;
|
||||
|
||||
public PlayException(int code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user