24 lines
535 B
C#
24 lines
535 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 MoldMaintainGroupItemRelationInput
|
|
{
|
|
/// <summary>
|
|
/// 项目组Id
|
|
/// </summary>
|
|
public string item_group_id { get; set; }
|
|
/// <summary>
|
|
/// 模具Id
|
|
/// </summary>
|
|
public string mold_id { get; set; }
|
|
}
|
|
}
|