|
|
@@ -206,7 +206,8 @@ public class GoodsDBUtil { |
|
|
|
*/ |
|
|
|
public static ArrayList<BPA_GOODS> getByClassifyId(String classifyId) { |
|
|
|
String orderby = QueryDB.Desc_Sort_Up; |
|
|
|
String where = "isDelete=? and classifyId=?"; |
|
|
|
// String where = "isDelete=? and classifyId=?"; |
|
|
|
String where = "isDelete=? and goodClassifyid=?"; |
|
|
|
String[] args = new String[]{"0",classifyId}; |
|
|
|
ArrayList<BPA_GOODS> data = new ArrayList<>(); |
|
|
|
ArrayList<Object> obj = QueryDB.Get(BPA_GOODS.class, where, args, orderby); |
|
|
|