Files
wcs/WCS.Model/ApiModel/StoreInfo/GetShelvesRequest.cs
hehaibing-1996 94aa92f536 货架管理
2025-01-11 18:37:33 +08:00

14 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.StoreInfo
{
public class GetShelvesRequest : PageQueryRequestBase
{
public int? ShelfTypeId { get; set; }
public string ShelfCode { get; set; }
public bool? IsEnable { get; set; }
}
}