Skip to content

Commit

Permalink
Merge pull request #174 from Binary-ZeroOne/dev
Browse files Browse the repository at this point in the history
将BizwifiAPI相关bean的内部类改为public static
  • Loading branch information
liyiorg authored Aug 21, 2018
2 parents b57c6b7 + b9064e0 commit 54e9ef9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class DeviceListResultData {
private Integer totalcount;
private Integer pageindex;
private Integer pagecount;

private List<Records> records;

public Integer getTotalcount() {
Expand Down Expand Up @@ -47,7 +46,7 @@ public void setRecords(List<Records> records) {
this.records = records;
}

private class Records {
public static class Records {
private Integer shop_id;
private String ssid;
private String bssid;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void setStruct(Struct struct) {
this.struct = struct;
}

private class Struct {
public static class Struct {
private String wxa_user_name;
private String wxa_path;
private String url;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void setSsid_password_list(List<SsidPassword> ssid_password_list) {
this.ssid_password_list = ssid_password_list;
}

private class SsidPassword {
public static class SsidPassword {
private String ssid;
private String password;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void setRecords(List<Records> records) {
this.records = records;
}

private class Records {
public static class Records {
private Integer shop_id;
private String shop_name;
private String ssid;
Expand Down

0 comments on commit 54e9ef9

Please sign in to comment.