feat quickly

This commit is contained in:
2026-01-24 11:14:31 +08:00
parent 83d722d2f1
commit 4aa48a822e
9 changed files with 80 additions and 134 deletions

View File

@@ -38,7 +38,7 @@ export namespace backend {
mysqlModelPath: string;
defaultQueryPackagePath: string;
modelBasePath: string;
swaggerDir: string;
swaggerFilePath: string;
databases: DatabaseConfig[];
projects: ProjectConfig[];
@@ -55,7 +55,7 @@ export namespace backend {
this.mysqlModelPath = source["mysqlModelPath"];
this.defaultQueryPackagePath = source["defaultQueryPackagePath"];
this.modelBasePath = source["modelBasePath"];
this.swaggerDir = source["swaggerDir"];
this.swaggerFilePath = source["swaggerFilePath"];
this.databases = this.convertValues(source["databases"], DatabaseConfig);
this.projects = this.convertValues(source["projects"], ProjectConfig);
}