37 lines
887 B
C#
37 lines
887 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 起始库位ID
|
|
/// </summary>
|
|
public string startlocation { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 目标库位ID
|
|
/// </summary>
|
|
public string endlocation { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 单据状态
|
|
/// </summary>
|
|
public string status { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 业务类型:
|
|
/// </summary>
|
|
public string biz_type { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 所属仓库
|
|
/// </summary>
|
|
public string warehouse { get; set; } = string.Empty;
|
|
}
|
|
}
|