version:1.4
update:2021-10-21 10:14:40 fix: add:增加浏览器桌面检测升级,修复重复请求
This commit is contained in:
35
app/src/main/java/com/aoleyun/sn/bean/RemoteDebug.java
Normal file
35
app/src/main/java/com/aoleyun/sn/bean/RemoteDebug.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class RemoteDebug implements Serializable {
|
||||
private static final long serialVersionUID = 6251851514703694946L;
|
||||
|
||||
String app_package;
|
||||
String content;
|
||||
int type;
|
||||
|
||||
public String getApp_package() {
|
||||
return app_package;
|
||||
}
|
||||
|
||||
public void setApp_package(String app_package) {
|
||||
this.app_package = app_package;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user