32 lines
714 B
C#
32 lines
714 B
C#
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; }
|
||
|
||
}
|
||
}
|