using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs
{
public class AllotInput
{
///
/// 起始库位ID
///
public string startlocation { get; set; } = string.Empty;
///
/// 目标库位ID
///
public string endlocation { get; set; } = string.Empty;
///
/// 单据状态
///
public string status { get; set; } = string.Empty;
///
/// 业务类型:
///
public string biz_type { get; set; } = string.Empty;
///
/// 所属仓库
///
public string warehouse { get; set; } = string.Empty;
}
}