25 lines
579 B
C#
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; }
|
|
|
|
}
|
|
}
|