fix(swap-trade): 修正名义本金小数点精度

This commit is contained in:
张名锐
2026-08-05 13:44:17 +08:00
parent 41de2f6dd6
commit 9affdf5d41
8 changed files with 18 additions and 17 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ try
options.ValueLengthLimit = 1024 * 1024 * 100; // 100MB max len form data
options.MultipartBodyLengthLimit = int.MaxValue; //不限制文件上传大小
});
builder.Services.AddMvcOptions(options => options.MaxModelBindingCollectionSize = 1000000);
builder.Services.Configure<MvcOptions>(options => options.MaxModelBindingCollectionSize = 1000000);
builder.Services.Configure<KafkaConfig>(builder.Configuration.GetSection("KafkaConfig"));
builder.Services.Configure<ExternalCashFlowOptions>(builder.Configuration.GetSection("ExternalCashFlow"));
builder.Services.AddScoped<IViewRenderService, ViewRenderService>();