Commit 318c8f52 by XiaHou

权星相关接口修复

parent f6a54d62
...@@ -169,7 +169,9 @@ public class PmsProductAttributeCategoryServiceImpl implements PmsProductAttribu ...@@ -169,7 +169,9 @@ public class PmsProductAttributeCategoryServiceImpl implements PmsProductAttribu
criteria.andDeleteStatusEqualTo(0);//删除标识0 未删除 1已删除 criteria.andDeleteStatusEqualTo(0);//删除标识0 未删除 1已删除
criteria.andNameEqualTo(name);//传入名称 criteria.andNameEqualTo(name);//传入名称
List<PmsProductAttributeCategory> ppacList1 = this.productAttributeCategoryMapper.selectByExample(example); List<PmsProductAttributeCategory> ppacList1 = this.productAttributeCategoryMapper.selectByExample(example);
if(ppacList1.size() == 0 || ppacList1 == null){
return null;
}
return this.getRecursiongList(dataList,ppacList1.get(0)); return this.getRecursiongList(dataList,ppacList1.get(0));
} }
...@@ -185,7 +187,6 @@ public class PmsProductAttributeCategoryServiceImpl implements PmsProductAttribu ...@@ -185,7 +187,6 @@ public class PmsProductAttributeCategoryServiceImpl implements PmsProductAttribu
return list; return list;
} }
} }
return list; return list;
} }
......
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