version:3.7beta

fix:移除HTTPInterface,所有请求在NetInterfaceManager进行
update:
This commit is contained in:
2022-04-08 09:33:55 +08:00
parent f2cc0aea30
commit 0cb21ceadc
29 changed files with 1408 additions and 1463 deletions

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