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,56 @@
using Prism.Mvvm;
namespace CapMachine.Wpf.Dtos
{
public class UserDto : BindableBase
{
private long _Id;
/// <summary>
/// 主键
/// </summary>
public long Id
{
get { return _Id; }
set { _Id = value; RaisePropertyChanged(); }
}
private string? _Name;
/// <summary>
/// 用户名称
/// </summary>
public string? Name
{
get { return _Name; }
set { _Name = value; RaisePropertyChanged(); }
}
private string? _Password;
/// <summary>
/// 密码
/// </summary>
public string? Password
{
get { return _Password; }
set { _Password = value; RaisePropertyChanged(); }
}
private string? _Level;
/// <summary>
/// 等级
/// </summary>
public string? Level
{
get { return _Level; }
set { _Level = value; RaisePropertyChanged(); }
}
private bool? _IsEnable;
/// <summary>
/// 是否启用
/// </summary>
public bool? IsEnable
{
get { return _IsEnable; }
set { _IsEnable = value; RaisePropertyChanged(); }
}
}
}