V1版本
This commit is contained in:
30
CapMachine.Wpf/Dtos/HistoryWorkCondDto.cs
Normal file
30
CapMachine.Wpf/Dtos/HistoryWorkCondDto.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using Prism.Mvvm;
|
||||
|
||||
namespace CapMachine.Wpf.Dtos
|
||||
{
|
||||
/// <summary>
|
||||
/// 历史工况信息
|
||||
/// </summary>
|
||||
public class HistoryWorkCondDto:BindableBase
|
||||
{
|
||||
private string _Name;
|
||||
/// <summary>
|
||||
/// 工况名称
|
||||
/// </summary>
|
||||
public string Name
|
||||
{
|
||||
get { return _Name; }
|
||||
set { _Name = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private DateTime _CreateTime;
|
||||
/// <summary>
|
||||
/// 工况时间
|
||||
/// </summary>
|
||||
public DateTime CreateTime
|
||||
{
|
||||
get { return _CreateTime; }
|
||||
set { _CreateTime = value; RaisePropertyChanged(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user