位置信息优化

This commit is contained in:
sxu 2025-06-23 17:29:34 +08:00
parent 4f7503ffec
commit eb80b04134
1 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,14 @@ public class KitchenSubPlaceController extends BaseController {
return getDataTable(list);
}
@ApiOperation(value = "查询厨房位置信息列表(不分页)")
//@RequiresPermissions("kitchen:place:list")
@GetMapping("/listAll")
public TableDataInfo listAll(KitchenSubPlace kitchenSubPlace) {
List<KitchenSubPlace> list = kitchenSubPlaceService.selectKitchenSubPlaceList(kitchenSubPlace);
return getDataTable(list);
}
/**
* 导出厨房位置信息列表
*/