24 lines
533 B
C#
24 lines
533 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Tnb.EquipMgr.Entities.Dto
|
||
{
|
||
/// <summary>
|
||
/// 根据模具ID、计划ID获取,保养组及项目信息
|
||
/// </summary>
|
||
public class CheckItemQueryinput
|
||
{
|
||
/// <summary>
|
||
/// 计划ID
|
||
/// </summary>
|
||
public string plan_id { get; set; }
|
||
/// <summary>
|
||
/// 模具ID
|
||
/// </summary>
|
||
public string mold_id { get; set; }
|
||
}
|
||
}
|