为什么shopCategoryList需要获取全部的信息,而AreaList不用?
来源:4-11 店铺类别区域信息的获取
大尾鲈鳗100
2020-05-20
shopCategoryList = shopCategoryService.getShopCategoryList(new ShopCategory());
areaList = areaService.getAreaList();
就是为什么一个需要加new ShopCategory(),而地区列表不用加new Area() ?
写回答
1回答
-
翔仔
2020-05-20
主要是因为ShopCategory有二级类别,需要和一级做区分,有时候只想获取所有的二级类别,就通过传入new ShopCategory()去获取
022020-05-21
相似问题