bug
lu
6 天以前 aaea9659e60f676bebc47b153aa227ebd730265c
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; }
    }
}