Browse Source

no message

master
lh 7 years ago
parent
commit
d15b230c43
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      app/src/main/java/com/qhclh/ytzh/work/carsmannage/GrossChickenFragment.java

+ 6
- 2
app/src/main/java/com/qhclh/ytzh/work/carsmannage/GrossChickenFragment.java View File

@ -120,12 +120,14 @@ public class GrossChickenFragment extends BaseFragment implements RefreshLayout.
Map<Object, Object> where = queryObj.getMap("Where");
if (userid != 0) {
where.put("User_ID", userid);
}else {
where.put("MyOwn",true);
}
if (factryid != 0) {
where.put("BreedFactory_ID", factryid);
}
if (time != 0) {
where.put("CreateTime", time / 1000);
where.put("Date", time / 1000);
}
List<Object> orderList = queryObj.getList("OrderBy");
@ -190,12 +192,14 @@ public class GrossChickenFragment extends BaseFragment implements RefreshLayout.
Map<Object, Object> where = queryObj.getMap("Where");
if (userid!= 0) {
where.put("User_ID", userid);
}else {
where.put("MyOwn",true);
}
if (factryid!= 0) {
where.put("BreedFactory_ID", factryid);
}
if (time != 0) {
where.put("CreateTime", time / 1000);
where.put("Date", time / 1000);
}
List<Object> orderList = queryObj.getList("OrderBy");


Loading…
Cancel
Save