Commit aab037d9 authored by zhang_z's avatar zhang_z

Merge remote-tracking branch 'origin/master'

parents 4f81e432 d79999db
...@@ -119,7 +119,7 @@ public class LoginPresenter extends LoginContract.Presenter { ...@@ -119,7 +119,7 @@ public class LoginPresenter extends LoginContract.Presenter {
@Override @Override
public void downList(View view, int flag, LoadingDialog loadingDialog) { public void downList(View view, int flag, LoadingDialog loadingDialog) {
Realm realm = DBFactory.getRealm(); Realm realm = DBFactory.getRealm();
RealmResults<Oper> opers = realm.where(Oper.class).findAll(); RealmResults<Oper> opers = realm.where(Oper.class).equalTo("operStatus", "0").findAll();
mView.openDownList(view, opers, flag); mView.openDownList(view, opers, flag);
} }
......
...@@ -29,7 +29,7 @@ public final class SystemUtil { ...@@ -29,7 +29,7 @@ public final class SystemUtil {
*/ */
public static String getDeviceModel() { public static String getDeviceModel() {
// return DeviceUtils.getModel(); // return DeviceUtils.getModel();
return "X990"; return "AECRC10";
} }
......
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