version:3.7beta
fix:移除HTTPInterface,所有请求在NetInterfaceManager进行 update:
This commit is contained in:
29
app/src/main/java/com/aoleyun/sn/bean/AppID.java
Normal file
29
app/src/main/java/com/aoleyun/sn/bean/AppID.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AppID implements Serializable {
|
||||
private static final long serialVersionUID = -2177988059115315546L;
|
||||
|
||||
String ids;
|
||||
@SerializedName("package")
|
||||
String packages;
|
||||
|
||||
public String getIds() {
|
||||
return ids;
|
||||
}
|
||||
|
||||
public void setIds(String ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getPackages() {
|
||||
return packages;
|
||||
}
|
||||
|
||||
public void setPackages(String packages) {
|
||||
this.packages = packages;
|
||||
}
|
||||
}
|
||||
17
app/src/main/java/com/aoleyun/sn/bean/AppLimit.java
Normal file
17
app/src/main/java/com/aoleyun/sn/bean/AppLimit.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AppLimit implements Serializable {
|
||||
private static final long serialVersionUID = -4550724319678357614L;
|
||||
|
||||
String result;
|
||||
|
||||
public String getResult() {
|
||||
return result;
|
||||
}
|
||||
|
||||
public void setResult(String result) {
|
||||
this.result = result;
|
||||
}
|
||||
}
|
||||
17
app/src/main/java/com/aoleyun/sn/bean/CustomROMApp.java
Normal file
17
app/src/main/java/com/aoleyun/sn/bean/CustomROMApp.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class CustomROMApp implements Serializable {
|
||||
private static final long serialVersionUID = 4050973622829547418L;
|
||||
|
||||
String package_name;
|
||||
|
||||
public String getPackage_name() {
|
||||
return package_name;
|
||||
}
|
||||
|
||||
public void setPackage_name(String package_name) {
|
||||
this.package_name = package_name;
|
||||
}
|
||||
}
|
||||
17
app/src/main/java/com/aoleyun/sn/bean/EBagCode.java
Normal file
17
app/src/main/java/com/aoleyun/sn/bean/EBagCode.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.aoleyun.sn.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EBagCode implements Serializable {
|
||||
private static final long serialVersionUID = -5406288064300275496L;
|
||||
|
||||
String ebagCode;
|
||||
|
||||
public String getEbagCode() {
|
||||
return ebagCode;
|
||||
}
|
||||
|
||||
public void setEbagCode(String ebagCode) {
|
||||
this.ebagCode = ebagCode;
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,8 @@ package com.aoleyun.sn.bean;
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.JsonParser;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
@@ -38,6 +40,7 @@ public class NetAndLaunchBean implements Serializable {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public String toString() {
|
||||
return JsonParser.parseString(new Gson().toJson(this)).getAsJsonObject().toString();
|
||||
|
||||
Reference in New Issue
Block a user