using Panuon.UI.Silver.Core;
using SHJX.Service.Model.MvvmCommon;
using System.ComponentModel;
namespace SHJX.Service.Model.Forms
{
public class HeatItem : PropertyImp
{
public int serialKey;
///
/// 主键自增列
///
[DisplayName(nameof(SerialKey))]
[ReadOnlyColumn]
[ColumnWidth("1*")]
public int SerialKey { get; set; }
///
/// 当前步骤
///
[DisplayName("当前步骤")]
[ReadOnlyColumn]
[ColumnWidth("1*")]
public string CurrentStep { get; set; }
///
/// 下一步骤
///
[IgnoreColumn]
public string NextStep { get; set; }
public int heatingTime;
///
/// 加热时间(分钟)
///
[DisplayName("加热时间(分钟)")]
[ColumnWidth("1*")]
public int HeatingTime
{
get => heatingTime;
set
{
heatingTime = value;
RaisePropertyChanged(nameof(HeatingTime));
}
}
public int temperature;
///
/// 温度
///
[DisplayName("温度")]
[ColumnWidth("1*")]
public int Temperature
{
get => temperature;
set
{
temperature = value;
RaisePropertyChanged(nameof(Temperature));
}
}
///
/// 描述
///
[IgnoreColumn]
public string Description { get; set; }
}
}