Files

60 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class WareHouseUpInput
{
/// <summary>
/// 登录类型
/// </summary>
public string loginType { get; set; }
/// <summary>
/// 需求来源单据Id对应业务主表Id
/// </summary>
public string requireId { get; set; }
/// <summary>
/// 需求单据code
/// </summary>
public string require_code { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
public string source_id { get; set; }
/// <summary>
/// 来源单据code
/// </summary>
public string source_code { get; set; }
/// <summary>
/// 单据业务类型Id
/// </summary>
public string bizTypeId { get; set; }
/// <summary>
/// 任务执行条码表
/// </summary>
public List<WmsDistaskCode> distaskCodes { get; set; }
/// <summary>
/// 载具
/// </summary>
public List<String> carryIds { get; set; }
/// <summary>
/// 任务执行单号
/// </summary>
public string bill_code { get; set; }
/// <summary>
/// 任务执行区域
/// </summary>
public string area_code { get; set; }
/// <summary>
/// 任务执行
/// </summary>
public WmsDistaskH wmsDistaskH { get; set; }
}
}