From 8114becd3aa125191bf0ed06cb8b17379b5757aa Mon Sep 17 00:00:00 2001
From: lg <123456>
Date: 星期五, 12 十二月 2025 13:38:48 +0800
Subject: [PATCH] 其它入库单据类型改为可维护
---
DevApp/Gs.DevApp/Entity/XlsOutModel.cs | 27 +++++++++++----------------
1 files changed, 11 insertions(+), 16 deletions(-)
diff --git a/DevApp/Gs.DevApp/Entity/XlsOutModel.cs b/DevApp/Gs.DevApp/Entity/XlsOutModel.cs
index 00cf854..c147979 100644
--- a/DevApp/Gs.DevApp/Entity/XlsOutModel.cs
+++ b/DevApp/Gs.DevApp/Entity/XlsOutModel.cs
@@ -1,30 +1,25 @@
-锘縰sing System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Gs.DevApp.Entity
+锘縩amespace Gs.DevApp.Entity
{
internal class XlsOutModel
{
/// <summary>
- ///
/// </summary>
/// <param name="_outView">瀵瑰簲瑙嗗浘</param>
/// <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)
{
- this.outView = _outView;
- this.outWhere = _outWhere;
- this.outSortName = _outSortName;
- this.outSortOrder = _outSortOrder;
+ 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; }
@@ -35,6 +30,6 @@
public string outSortOrder { get; set; }
-
+ public object outParams { get; set; }
}
-}
+}
\ No newline at end of file
--
Gitblit v1.9.3