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