using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 品名参数台账查询
///
public class QueryParaGoodsDto
{
///
/// 品名编码
///
///
public string GoodsCode { get; set; }
///
/// 品名中文
///
///
public string GoodsNameCN { get; set; }
///
/// 品名英文
///
///
public string GoodsNameEN { get; set; }
///
/// 品名描述
///
///
public string GoodsDesp { get; set; }
///
/// 品名分类
///
/// 02
public string GoodsCategory { get; set; }
///
/// 创建者名称
///
///
public string CreateUserName { get; set; }
///
/// 修改者名称
///
///
public string UpdateUserName { get; set; }
///
/// 创建时间开始
///
/// 2022-01-01
public string CreateTimeBegin { get; set; }
///
/// 创建时间结束
///
/// 2023-07-01
public string CreateTimeEnd { get; set; }
///
/// 更新时间开始
///
///
public string UpdateTimeBegin { get; set; }
///
/// 更新时间结束
///
///
public string UpdateTimeEnd { get; set; }
///
/// 当前页码
///
/// 1
public int PageNo { get; set; } = 1;
///
/// 页码容量
///
/// 20
public int PageSize { get; set; } = 20;
///
/// 排序字段
///
/// GoodsCode
public string SortField { get; set; }
///
/// 排序方法,默认降序
///
/// true
public bool descSort { get; set; } = true;
}
}