V1版本
This commit is contained in:
57
CapMachine.Wpf/Dtos/ConfigLimitDto.cs
Normal file
57
CapMachine.Wpf/Dtos/ConfigLimitDto.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
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 ConfigLimitDto : 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 _Up;
|
||||
/// <summary>
|
||||
/// Up
|
||||
/// </summary>
|
||||
public decimal Up
|
||||
{
|
||||
get { return _Up; }
|
||||
set { _Up = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private decimal _Down;
|
||||
/// <summary>
|
||||
/// Down
|
||||
/// </summary>
|
||||
public decimal Down
|
||||
{
|
||||
get { return _Down; }
|
||||
set { _Down = value; RaisePropertyChanged(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user