Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/RelevanceMoldInput.cs
2023-11-06 19:35:59 +08:00

36 lines
815 B
C#
Raw Permalink 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.
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; }
}
}