using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.ProductGoods;
///
/// 产品列表.
///
[SuppressSniffer]
public class ProductGoodsListQueryInput : PageInputBase
{
///
/// 订单编号.
///
public string code { get; set; }
///
/// 产品名称.
///
public string fullName { get; set; }
///
/// 分类ID.
///
public string classifyId { get; set; }
}