生产管理-生产工单排产代码调整

This commit is contained in:
DEVICE8\12494
2023-04-23 13:41:40 +08:00
parent 67113fabf8
commit f0fde866c8
13 changed files with 1039 additions and 517 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.ProductionMgr.Entitys.Entity;
namespace Tnb.ProductionMgr.Entitys.Dto.PrdManage
{
/// <summary>
/// 生产操作记录输出类
/// </summary>
public class PrdTaskOperOutput : PrdTaskLog
{
/// <summary>
///任务单操作状态
/// </summary>
public string statusName { get; set; }
}
}