初始提交
This commit is contained in:
30
bin/controller/BedController.route.dart
Normal file
30
bin/controller/BedController.route.dart
Normal file
@@ -0,0 +1,30 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
// **************************************************************************
|
||||
// RouteGenerator
|
||||
// **************************************************************************
|
||||
|
||||
part of 'BedController.dart';
|
||||
|
||||
late var _callHandler;
|
||||
final Map<HttpMethod, List<List>> routes = {
|
||||
HttpMethod.GET: [
|
||||
["/bed/bedList", HttpResponseType.JSON, _callHandler.getBedList, 2, true],
|
||||
[
|
||||
"/bed/orderCheckIn",
|
||||
HttpResponseType.JSON,
|
||||
_callHandler.orderCheckIn,
|
||||
2,
|
||||
true
|
||||
]
|
||||
],
|
||||
HttpMethod.POST: [
|
||||
["/bed/addBed", HttpResponseType.JSON, _callHandler.addBed, 1, true]
|
||||
],
|
||||
HttpMethod.PUT: [
|
||||
["/bed/updateBed", HttpResponseType.JSON, _callHandler.updateBed, 1, true]
|
||||
],
|
||||
HttpMethod.DELETE: [
|
||||
["/bed/deleteBed", HttpResponseType.JSON, _callHandler.deleteBed, 1, true]
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user