15 lines
305 B
C#
15 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.PDAMatBind
|
|
{
|
|
public class GetShelfInfoByShelfCodeRequest : RequestBase
|
|
{
|
|
/// <summary>
|
|
/// 货架编码
|
|
/// </summary>
|
|
public string ShelfCode { get; set; }
|
|
}
|
|
}
|