This commit is contained in:
DEVICE8\12494
2023-05-18 10:38:47 +08:00
parent 926d37924a
commit 90b3b55e4a
4 changed files with 94 additions and 10 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
/// <summary>
/// 保养规则关联模具列表输出参数
/// </summary>
public class MaintainRuleMoldListOutput
{
/// <summary>
/// 模具Id
/// </summary>
public string mold_id { get; set; }
/// <summary>
/// 模具编码
/// </summary>
public string mold_code { get; set; }
/// <summary>
/// 模具名称
/// </summary>
public string mold_name { get; set; }
}
}