生产任务单代码调整

This commit is contained in:
DEVICE8\12494
2023-05-16 14:16:59 +08:00
parent ed87bd712c
commit e7e2cea7bd
7 changed files with 249 additions and 12 deletions

View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
/// <summary>
/// 拆解组装包装排产输入参数
/// </summary>
public class UnPackSchedlingInput
{
/// <summary>
/// 工单Id
/// </summary>
public string mo_id { get; set; }
/// <summary>
/// 生产任务Id
/// </summary>
public string mo_task_id { get; set; }
/// <summary>
/// 生产bom Id
/// </summary>
public string bom_id { get; set; }
/// <summary>
/// 产线Id
/// </summary>
public string workline_id { get; set; }
/// <summary>
/// Desc:预计开始时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? estimated_start_date { get; set; }
/// <summary>
/// Desc:预计结束时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? estimated_end_date { get; set; }
}
}