|
@@ -157,9 +157,9 @@ public class RestaurantTypeController {
|
|
|
PageMethod.startPage(pageParam.getPageNum(), pageParam.getPageSize(), pageParam.getCount());
|
|
|
}
|
|
|
RestaurantType restaurantTypeFilter = MyModelUtil.copyTo(restaurantTypeDtoFilter, RestaurantType.class);
|
|
|
- String orderBy = MyOrderParam.buildOrderBy(orderParam, RestaurantType.class);
|
|
|
+// String orderBy = MyOrderParam.buildOrderBy(orderParam, RestaurantType.class);
|
|
|
List<RestaurantType> restaurantTypeList =
|
|
|
- restaurantTypeService.getRestaurantTypeListWithRelation(restaurantTypeFilter, orderBy);
|
|
|
+ restaurantTypeService.getRestaurantTypeListWithRelation(restaurantTypeFilter, "tour_restaurant_type.show_order desc");
|
|
|
return ResponseResult.success(MyPageUtil.makeResponseData(restaurantTypeList, RestaurantTypeVo.class));
|
|
|
}
|
|
|
|