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

25 lines
579 B
C#

using JNPF.Common.Filter;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
/// <summary>
/// 停机历史查询输入参数
/// </summary>
public class ClosedownHistoryQuery : PageInputBase
{
/// <summary>
/// 开始时间
/// </summary>
public DateTime? beginTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? endTime { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string eqpName { get; set; }
}
}