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