20 lines
479 B
C#
20 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.StoreInfo
|
|
{
|
|
public class GetMatDetailCurrentInfosRequest : PageQueryRequestBase
|
|
{
|
|
public int? LocationAreaId { get; set; }
|
|
public string LocationCode { get; set; }
|
|
|
|
public int? ShelfTypeId { get; set; }
|
|
public string ShelfCode { get; set; }
|
|
|
|
public string MatCode { get; set; }
|
|
|
|
public string MatName { get; set; }
|
|
}
|
|
}
|