生产管理

This commit is contained in:
qianhao.xu
2024-12-03 14:35:59 +08:00
parent 5e522c6e00
commit aab3a3b58d
41 changed files with 4616 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.base_.Dto
{
/// <summary>
/// 工艺路线与工序父子表
/// </summary>
public class RouteANDprocess
{
/// <summary>
/// 工艺路线id
/// </summary>
public int parentId { get; set; }
/// <summary>
/// 工序id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
}
}