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 = "")
|
{
|
outView = _outView;
|
outWhere = _outWhere;
|
outSortName = _outSortName;
|
outSortOrder = _outSortOrder;
|
}
|
|
|
public string outView { get; set; }
|
|
|
public string outWhere { get; set; }
|
|
|
public string outSortName { get; set; }
|
|
|
public string outSortOrder { get; set; }
|
}
|
}
|