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

18 lines
416 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.
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; }
}
}