24 lines
520 B
C#
24 lines
520 B
C#
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 RelevanceMoldInput
|
|
{
|
|
/// <summary>
|
|
/// 规则Id
|
|
/// </summary>
|
|
public string? rule_id { get; set; }
|
|
/// <summary>
|
|
/// 模具Id
|
|
/// </summary>
|
|
public string? mold_id { get; set;}
|
|
}
|
|
}
|