This commit is contained in:
CortexCore
2024-05-10 02:59:49 +08:00
parent bec4e7bf91
commit c76f16103c
17 changed files with 155 additions and 16 deletions

View File

@@ -1,9 +1,17 @@
using System.ComponentModel;
namespace IDIS.YL106.Model;
/// <summary>
/// 装配工序
/// </summary>
public record Procedure_Assembly:Procedure_Base
{
/// <summary>
/// 物料名称
/// </summary>
[DisplayName("物料名称")]
public string MaterialName { get; set; } = string.Empty;
}