using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAProductionLineCallOut
{
public class UpdateMatDetailCurrentInForCallOutRequest:RequestBase
{
///
/// 货架存量Id
///
public int MatDetailCurrentInfoId { get; set; }
///
/// 修改后的数量
///
public int MatQty { get; set; }
}
}