初始提交

This commit is contained in:
wyf
2026-01-20 09:26:55 +08:00
commit dd4447a029
106 changed files with 11690 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
// **************************************************************************
// RouteGenerator
// **************************************************************************
part of 'PersonController.dart';
late var _callHandler;
final Map<HttpMethod, List<List>> routes = {
HttpMethod.GET: [
[
"/person/personList",
HttpResponseType.JSON,
_callHandler.getPersonList,
2,
true
]
],
HttpMethod.POST: [
[
"/person/addPerson",
HttpResponseType.JSON,
_callHandler.addPerson,
1,
true
]
],
HttpMethod.PUT: [
[
"/person/updatePerson",
HttpResponseType.JSON,
_callHandler.updatePerson,
1,
true
]
],
HttpMethod.DELETE: [
[
"/person/deletePerson",
HttpResponseType.JSON,
_callHandler.deletePerson,
1,
true
]
],
};