using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gs.DevApp.Entity
{
internal class XlsOutModel
{
///
///
///
/// 对应视图
/// 条件
/// 排序字段
/// 排序
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; }
}
}