Commit 0dc065b9 by sikang

UPDATE

parent 11b075f7
package tech.starwin.mvp.beans; package tech.starwin.mvp.beans;
import java.io.Serializable;
import java.util.List; import java.util.List;
/** /**
* Created by SiKang on 2018/11/2. * Created by SiKang on 2018/11/2.
*/ */
public class ThirdPartDataBean { public class ThirdPartDataBean implements Serializable {
private List<String> types; private List<String> types;
public List<String> getTypes() { public List<String> getTypes() {
......
package tech.starwin.mvp.beans; package tech.starwin.mvp.beans;
import java.io.Serializable;
/** /**
* @作者:My * @作者:My
* @创建日期: 2017/7/13 15:43 * @创建日期: 2017/7/13 15:43
...@@ -9,7 +11,7 @@ package tech.starwin.mvp.beans; ...@@ -9,7 +11,7 @@ package tech.starwin.mvp.beans;
* @更新描述:${TODO} * @更新描述:${TODO}
*/ */
public class TotalAmount { public class TotalAmount implements Serializable{
private double amount = 600000; private double amount = 600000;
private int day = 7; private int day = 7;
private double rate = 1; private double rate = 1;
......
package tech.starwin.mvp.beans; package tech.starwin.mvp.beans;
import java.io.Serializable;
import java.util.ArrayList; import java.util.ArrayList;
/** /**
* Created by SiKang on 2018/11/20. * Created by SiKang on 2018/11/20.
*/ */
public class UpdateBean { public class UpdateBean implements Serializable{
private int latestVersionCode; private int latestVersionCode;
private String latestVersion; private String latestVersion;
private ArrayList<String> releaseNotes; private ArrayList<String> releaseNotes;
......
package tech.starwin.network; package tech.starwin.network;
import com.google.firebase.analytics.FirebaseAnalytics;
import java.io.IOException; import java.io.IOException;
...@@ -9,7 +8,6 @@ import okhttp3.Interceptor; ...@@ -9,7 +8,6 @@ import okhttp3.Interceptor;
import okhttp3.Request; import okhttp3.Request;
import okhttp3.Response; import okhttp3.Response;
import tech.starwin.LibConfig; import tech.starwin.LibConfig;
import tech.starwin.utils.GeneralUtils;
import tech.starwin.utils.LoginManager; import tech.starwin.utils.LoginManager;
import tech.starwin.utils.PreferencesManager; import tech.starwin.utils.PreferencesManager;
import tech.starwin.utils.collection.UploadManager; import tech.starwin.utils.collection.UploadManager;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment