20 lines
439 B
C#
20 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.PDAMatBind
|
|
{
|
|
public class GetShelfInfoByLocationCodeRequest:RequestBase
|
|
{
|
|
/// <summary>
|
|
/// 位置编码 工位编码
|
|
/// </summary>
|
|
public string LocationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货架编码
|
|
/// </summary>
|
|
public string ShelfCode { get; set; }
|
|
}
|
|
}
|