Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/RelevanceMoldInput.cs
DEVICE8\12494 9d30038a7d 1
2023-05-18 18:44:16 +08:00

42 lines
933 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 包含模具id项目组Id
/// </summary>
public List<RowIdItem> rowIds { get; set; }
/// <summary>
/// 模具Ids
/// </summary>
public List<string> ids { get; set; }
}
public class RowIdItem
{
/// <summary>
/// 模具id
/// </summary>
public string mold_id { get; set; }
/// <summary>
/// 项目组id
/// </summary>
public string group_id { get; set; }
}
}