andon呼叫 aql 模具保养

This commit is contained in:
qianjiawei
2023-09-12 17:33:25 +08:00
parent e117d501b7
commit 5365efa279
9 changed files with 361 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class AndonRecordInput
{
/// <summary>
/// 关联工单
/// </summary>
public string? mo_id { get; set; }
/// <summary>
/// 故障
/// </summary>
public string? breakdown { get; set; }
}
}