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.

105 lines
2.6 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 QueryParaGoodsDto
{
/// <summary>
/// 品名编码
/// </summary>
/// <example></example>
public string GoodsCode { get; set; }
/// <summary>
/// 品名中文
/// </summary>
/// <example></example>
public string GoodsNameCN { get; set; }
/// <summary>
/// 品名英文
/// </summary>
/// <example></example>
public string GoodsNameEN { get; set; }
/// <summary>
/// 品名描述
/// </summary>
/// <example></example>
public string GoodsDesp { get; set; }
/// <summary>
/// 品名分类
/// </summary>
/// <example>02</example>
public string GoodsCategory { 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>GoodsCode</example>
public string SortField { get; set; }
/// <summary>
/// 排序方法,默认降序
/// </summary>
/// <example>true</example>
public bool descSort { get; set; } = true;
}
}