临时提交

This commit is contained in:
648540858
2024-08-12 18:00:06 +08:00
parent 9a4a81a90e
commit 213b218efa
4 changed files with 111 additions and 8 deletions

View File

@@ -15,5 +15,7 @@ public class InviteInfo {
private Long startTime;
private Long stopTime;
private String downloadSpeed;
private String ip;
private int port;
}

View File

@@ -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;
}
}