This commit is contained in:
2024-12-18 15:50:21 +08:00
parent 684973e6b7
commit b2c54119ea
214 changed files with 65908 additions and 8461 deletions

View 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(); }
}
}
}