lu
2025-01-14 d35bb711f8d3d267b44b4a80c20e31dabf309ae7
DevApp/Gs.DevApp/Entity/XlsOutModel.cs
@@ -1,30 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gs.DevApp.Entity
namespace 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 = "")
        {
            this.outView = _outView;
            this.outWhere = _outWhere;
            this.outSortName = _outSortName;
            this.outSortOrder = _outSortOrder;
            outParameter = _outParameter;
            outWhere = _outWhere;
            outSortName = _outSortName;
            outSortOrder = _outSortOrder;
        }
        public string outView { get; set; }
        public string outParameter { get; set; }
        public string outWhere { get; set; }
@@ -34,7 +28,5 @@
        public string outSortOrder { get; set; }
    }
}
}