From 22f37018f11fffbc4a7bd656e1a459b3b02a8980 Mon Sep 17 00:00:00 2001
From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU>
Date: 星期六, 20 九月 2025 10:31:33 +0800
Subject: [PATCH] 设备台账表、设备保养记录表、设备点检记录表的增删改和审核功能
---
DevApp/Gs.DevApp/Entity/XlsOutModel.cs | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/DevApp/Gs.DevApp/Entity/XlsOutModel.cs b/DevApp/Gs.DevApp/Entity/XlsOutModel.cs
index 0020481..c147979 100644
--- a/DevApp/Gs.DevApp/Entity/XlsOutModel.cs
+++ b/DevApp/Gs.DevApp/Entity/XlsOutModel.cs
@@ -9,12 +9,13 @@
/// <param name="_outSortName">鎺掑簭瀛楁</param>
/// <param name="_outSortOrder">鎺掑簭</param>
public XlsOutModel(string _outParameter = "", string _outWhere = "",
- string _outSortName = "", string _outSortOrder = "")
+ 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