Files
wcs/WCS.Model/ApiModel/LocationInfo/GetLocationInfosRequest.cs
2025-01-13 14:10:32 +08:00

14 lines
332 B
C#

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