Files
iMES_Net/iMES.Entity/DomainModels/Core/LoadSingleDataModel.cs
2026-02-06 18:34:35 +08:00

33 lines
848 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iMES.Entity.DomainModels
{
public class PageDataOptions
{
public int Page { get; set; }
public int Rows { get; set; }
public int Total { get; set; }
public string TableName { get; set; }
public string Sort { get; set; }
/// <summary>
/// 排序方式
/// </summary>
public string Order { get; set; }
public string Wheres { get; set; }
public bool Export { get; set; }
public object Value { get; set; }
}
public class SearchParameters
{
public string Name { get; set; }
public string Value { get; set; }
public string DisplayType { get; set; }
}
}