16 lines
347 B
C#
16 lines
347 B
C#
|
|
namespace LY.App.Model
|
|||
|
|
{
|
|||
|
|
public class PositionQueryInput
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 页码
|
|||
|
|
/// </summary>
|
|||
|
|
public int pageNum { get; set; } = 1;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 每页条数
|
|||
|
|
/// </summary>
|
|||
|
|
public int pageSize { get; set; } = 10;
|
|||
|
|
}
|
|||
|
|
}
|