From b5834262308402ea928355987b34d1a9a0011374 Mon Sep 17 00:00:00 2001 From: lu <123456> Date: 星期一, 08 九月 2025 23:43:13 +0800 Subject: [PATCH] bug --- DevApp/Gs.DevApp/Entity/XlsOutModel.cs | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/DevApp/Gs.DevApp/Entity/XlsOutModel.cs b/DevApp/Gs.DevApp/Entity/XlsOutModel.cs index a424691..c147979 100644 --- a/DevApp/Gs.DevApp/Entity/XlsOutModel.cs +++ b/DevApp/Gs.DevApp/Entity/XlsOutModel.cs @@ -8,13 +8,14 @@ /// <param name="_outWhere">鏉′欢</param> /// <param name="_outSortName">鎺掑簭瀛楁</param> /// <param name="_outSortOrder">鎺掑簭</param> - public XlsOutModel(string _outParameter= "", string _outWhere = "", - string _outSortName = "", string _outSortOrder = "") + public XlsOutModel(string _outParameter = "", string _outWhere = "", + string _outSortName = "", string _outSortOrder = "", object outParams = null) { outParameter = _outParameter; outWhere = _outWhere; outSortName = _outSortName; outSortOrder = _outSortOrder; + this.outParams = outParams; } @@ -28,5 +29,7 @@ public string outSortOrder { get; set; } + + public object outParams { get; set; } } } \ No newline at end of file -- Gitblit v1.9.3