Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/MaterialTransferCallRackToProductionLineInput.cs
2024-08-30 14:06:11 +08:00

33 lines
778 B
C#

namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class MaterialTransferCallRackToProductionLineInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; }
/// <summary>
/// 工位
/// </summary>
public string? workstation_id { get; set; }
/// <summary>
/// 终点库位
/// </summary>
public string? endlocation_code { get; set; }
/// <summary>
/// 载具
/// </summary>
public string? carry_code { get; set; }
}
}