You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

84 lines
2.2 KiB

using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ChangkeTec.SDMS.Model.Attributes;
using ChangkeTec.SDMS.Model.Base;
namespace ChangkeTec.SDMS.Model.DataCenterTables
{
[Description("通用代码表")]
public class TS_CODE : IUpdatableTable, ISoftDelete,INotifyPropertyChanged
{
[IsDataGridColum(true, 1)]
[Description("通用代码")]
[Required(ErrorMessage = "代码不能为空")]
[Index("IndexCode", Order = 0, IsUnique = true, IsClustered = false)]
[StringLength(50)]
public string Code { get; set; }
[IsDataGridColum(true, 2)]
[Description("描述")]
[StringLength(50)]
public string Desc { get; set; }
[Key]
public Guid GUID { get; set; } = Guid.NewGuid();
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int UID { get; set; }
[IsDataGridColum(true, 4)]
[Description("创建人")]
[StringLength(50)]
public string CreateUser { get; set; }
[IsDataGridColum(true, 5)]
[Description("创建时间")]
public DateTime CreateTime { get; set; }
[IsDataGridColum(true, 3)]
[Description("备注")]
public string Remark { get; set; }
[Description("修改人")]
[StringLength(50)]
public string UpdateUser { get; set; }
[Description("修改时间")]
public DateTime? UpdateTime { get; set; }
[Description("已删除")]
public bool IsDeleted { get; set; }
#region IsChecked
private bool _isChecked = false;
[NotMapped]
public bool IsChecked
{
get { return _isChecked; }
set
{
_isChecked = value;
NotityPropertyChanged("IsChecked");
}
}
#endregion
#region INotifyPropertyChanged接口
public event PropertyChangedEventHandler PropertyChanged;
public void NotityPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}