位置信息优化
This commit is contained in:
parent
4f7503ffec
commit
eb80b04134
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出厨房位置信息列表
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue