2025-04-21 14:10:27 +08:00

32 lines
714 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.Goods
{
/// <summary>
/// 进销存模块的商品的列表查询Query
/// </summary>
public class GoodsStockPageListQuery
{
/// <summary>
/// 搜索关键字
/// </summary>
public string KeyWord { get; set; }
/// <summary>
/// 店铺ID
/// </summary>
public Guid ShopID { get; set; }
/// <summary>
/// 分类或者品牌ID只有普通商品才存在分类和品牌
/// </summary>
public Guid? DeptID { get; set; }
}
}