新增生产管理,组装包装根据BomId拆解生产任务接口

This commit is contained in:
DEVICE8\12494
2023-05-15 18:11:11 +08:00
parent 6e9d1169ce
commit ed87bd712c
5 changed files with 186 additions and 84 deletions

View File

@@ -0,0 +1,39 @@
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 PackingSchedulingListOutput
{
/// <summary>
/// 产线Id
/// </summary>
public string workline_id { get; set; }
/// <summary>
/// 产线名称
/// </summary>
public string workline_name { get; set; }
/// <summary>
/// 生产任务单号
/// </summary>
public string mo_task_code { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string material_code { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string material_name { get; set; }
/// <summary>
/// 产出数量
/// </summary>
public string qty { get; set; }
}
}