lu
2024-10-22 029703212622519325f9cb5129a5e9ced98bdfad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
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 = "")
        {
            this.outView = _outView;
            this.outWhere = _outWhere;
            this.outSortName = _outSortName;
            this.outSortOrder = _outSortOrder;
        }
 
 
        public string outView { get; set; }
 
 
        public string outWhere { get; set; }
 
 
        public string outSortName { get; set; }
 
 
        public string outSortOrder { get; set; }
 
 
    }
}