14 lines
418 B
C#
14 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.PDAShelfLocationBindUnbind
|
|
{
|
|
public class GetMatDetailCurrentInfosForCallInRequest : RequestBase
|
|
{
|
|
public int LocationId { get; set; } = 0;
|
|
public string LocationCode { get; set; } = string.Empty;
|
|
public string MatCodeCondition { get; set; } = string.Empty;//物料编码条件
|
|
}
|
|
}
|