V1版本
This commit is contained in:
68
CapMachine.Wpf/Dtos/ConfigPIDDto.cs
Normal file
68
CapMachine.Wpf/Dtos/ConfigPIDDto.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using Prism.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Dtos
|
||||
{
|
||||
public class ConfigPIDDto:BindableBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
private string? _MeterName;
|
||||
/// <summary>
|
||||
/// 仪表名称
|
||||
/// </summary>
|
||||
public string? MeterName
|
||||
{
|
||||
get { return _MeterName; }
|
||||
set { _MeterName = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private int _IndexNo;
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
public int IndexNo
|
||||
{
|
||||
get { return _IndexNo; }
|
||||
set { _IndexNo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private decimal _P;
|
||||
/// <summary>
|
||||
/// P
|
||||
/// </summary>
|
||||
public decimal P
|
||||
{
|
||||
get { return _P; }
|
||||
set { _P = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private int _I;
|
||||
/// <summary>
|
||||
/// I
|
||||
/// </summary>
|
||||
public int I
|
||||
{
|
||||
get { return _I; }
|
||||
set { _I = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private int _D;
|
||||
/// <summary>
|
||||
/// D
|
||||
/// </summary>
|
||||
public int D
|
||||
{
|
||||
get { return _D; }
|
||||
set { _D = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user