using System.Collections.Generic; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgResMgt.Mcms.entity { /// /// 数据库表CMM_BASE_PROTOCOL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2020-11-19 /// public class CmmBaseProtocolEntity { /// /// 磅房设备通信协议ID /// private string protocolId = ""; /// /// 磅房设备通信名 /// private string protocolName = ""; /// /// 无注释 /// private string memo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 磅房设备通信协议ID /// [Description("磅房设备通信协议ID")] [Nullable(false)] [DataLength(50)] public string ProtocolId { get { return protocolId; } set { protocolId = value; } } /// /// 磅房设备通信名 /// [Description("磅房设备通信名")] [Nullable(true)] [DataLength(50)] public string ProtocolName { get { return protocolName; } set { protocolName = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] [DataLength(100)] public string Memo { get { return memo; } set { memo = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } public List ListC { get; set; } } }