Blame view

footsafety/app/src/main/java/etelligens/com/foodsafety/retrofit/LoginResponse.java 531 Bytes
f7a13682   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  package etelligens.com.foodsafety.retrofit;
  
  import com.google.gson.annotations.SerializedName;
  
  public class LoginResponse {
      private int status;
      private String msg;
      private UserData data;
  
      public LoginResponse(int status, String msg, UserData data) {
          this.status = status;
          this.msg = msg;
          this.data = data;
      }
  
      public int getStatus() {
          return status;
      }
  
      public String getMsg() {
          return msg;
      }
  
      public UserData getData() {
          return data;
      }
  }