using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
namespace SWS.CAD.Models
{
public class ec_wire_group_propertyhis
{
#region 实体成员
///
/// 信号属性历史ID
///
///
public string WireGroupPropertyhisID { get; set; }
///
/// 信号ID
///
///
public string WireGroupID { get; set; } = "";
///
/// 属性名称
///
///
public string PropertyName { get; set; } = "";
///
/// 旧属性值
///
///
public string OldPropertyValue { get; set; } = "";
///
/// 新属性值
///
///
public string NewPropertyValue { get; set; } = "";
///
/// 创建人
///
///
public string CreateUserID { get; set; }
///
/// 创建时间
///
///
public DateTime? CreateTime { get; set; }
///
/// 更新人
///
///
public string UpdateUserID { get; set; }
///
/// 更新时间
///
///
public DateTime? UpdateTime { get; set; }
#endregion
#region 扩展字段
///
/// 创建人名称
///
///
public string CreateUserName { get; set; }
///
/// 属性名称描述
///
///
public string PropertyNameDec { get; set; } = "";
#endregion
}
}