Files
CapMachine/CapMachine.Wpf/Dtos/ExpSearchDto.cs
2024-12-18 15:50:21 +08:00

59 lines
1.3 KiB
C#

using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Dtos
{
/// <summary>
/// 试验数据搜索模型
/// </summary>
public class ExpSearchDto : BindableBase
{
private string _ExpName;
/// <summary>
/// 试验名称
/// </summary>
public string ExpName
{
get { return _ExpName; }
set { _ExpName = value; RaisePropertyChanged(); }
}
private string _WorkCond;
/// <summary>
/// 工况
/// </summary>
public string WorkCond
{
get { return _WorkCond; }
set { _WorkCond = value; RaisePropertyChanged(); }
}
private DateTime? _StartTime;
/// <summary>
/// 工况 开始时间
/// </summary>
public DateTime? StartTime
{
get { return _StartTime; }
set { _StartTime = value; RaisePropertyChanged(); }
}
private DateTime? _EndTime;
/// <summary>
/// 工况 结束时间
/// </summary>
public DateTime? EndTime
{
get { return _EndTime; }
set { _EndTime = value; RaisePropertyChanged(); }
}
}
}