V1版本
This commit is contained in:
58
CapMachine.Wpf/Dtos/ExpSearchDto.cs
Normal file
58
CapMachine.Wpf/Dtos/ExpSearchDto.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
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(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user