You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.2 KiB
C#
87 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 品名分类参数台账查询
|
|
/// </summary>
|
|
public class QueryParaGoodsCategoryDto
|
|
{
|
|
/// <summary>
|
|
/// 品名分类
|
|
/// </summary>
|
|
/// <example>02</example>
|
|
public string GoodsCategory { get; set; }
|
|
|
|
/// <summary>
|
|
/// 品名分类名称
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string GoodsCategoryName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建者名称
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string CreateUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改者名称
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string UpdateUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间开始
|
|
/// </summary>
|
|
/// <example>2022-01-01</example>
|
|
public string CreateTimeBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间结束
|
|
/// </summary>
|
|
/// <example>2023-07-01</example>
|
|
public string CreateTimeEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间开始
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string UpdateTimeBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间结束
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string UpdateTimeEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
/// <example>1</example>
|
|
public int PageNo { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 页码容量
|
|
/// </summary>
|
|
/// <example>20</example>
|
|
public int PageSize { get; set; } = 20;
|
|
|
|
/// <summary>
|
|
/// 排序字段
|
|
/// </summary>
|
|
/// <example>GoodsCategory</example>
|
|
public string SortField { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序方法,默认降序
|
|
/// </summary>
|
|
/// <example>true</example>
|
|
public bool descSort { get; set; } = true;
|
|
}
|
|
}
|