Browse Source

fix 修改数据权限问题

chenchen 4 months ago
parent
commit
97caebbe0e

+ 1 - 1
application-webadmin/src/main/java/com/tourism/webadmin/back/controller/RestaurantTypeController.java

@@ -159,7 +159,7 @@ public class RestaurantTypeController {
         RestaurantType restaurantTypeFilter = MyModelUtil.copyTo(restaurantTypeDtoFilter, RestaurantType.class);
 //        String orderBy = MyOrderParam.buildOrderBy(orderParam, RestaurantType.class);
         List<RestaurantType> restaurantTypeList =
-                restaurantTypeService.getRestaurantTypeListWithRelation(restaurantTypeFilter, "tour_restaurant_type.show_order desc");
+                restaurantTypeService.getRestaurantTypeListWithRelation(restaurantTypeFilter, "tour_restaurant_type.show_order");
         return ResponseResult.success(MyPageUtil.makeResponseData(restaurantTypeList, RestaurantTypeVo.class));
     }