生产管理

This commit is contained in:
DEVICE8\12494
2023-04-21 16:54:16 +08:00
parent e915a1949c
commit a1bf240ff2
17 changed files with 750 additions and 265 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.WorkOrder
{
/// <summary>
/// 模具列表输出参数
/// </summary>
public class MoldListOutput : Molds
{
/// <summary>
/// 产品 名称
/// </summary>
public string item_name { get; set; }
}
}