using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgResMgt.Mcms.entity { /// /// 数据库表CMM_MONITOR所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-23SFAF86 时间:2021-11-22 /// public class CmmMonitorEntity { /// /// 计量点编号 /// private string pointNo = ""; /// /// 状态(0有效,1无效) /// private string validFlag = ""; /// /// 是否点击计量按钮(0否,1是) /// private string isHelp = ""; /// /// 实时重量 /// private decimal? weight = null; /// /// 是否已接管(0否1是) /// private string isTakeOver = ""; /// /// 是否已打开语音对讲(0否,1是) /// private string isOpenSound = ""; /// /// 计量点编号 /// [Description("计量点编号")] [Nullable(false)] [DataLength(20)] public string PointNo { get { return pointNo; } set { pointNo = value; } } /// /// 状态(0有效,1无效) /// [Description("状态(0有效,1无效)")] [Nullable(true)] [DataLength(1)] public string ValidFlag { get { return validFlag; } set { validFlag = value; } } /// /// 是否点击计量按钮(0否,1是) /// [Description("是否点击计量按钮(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IsHelp { get { return isHelp; } set { isHelp = value; } } /// /// 实时重量 /// [Description("实时重量")] [Nullable(true)] [DataLength(22)] public decimal? Weight { get { return weight; } set { weight = value; } } /// /// 是否已接管(0否1是) /// [Description("是否已接管(0否1是)")] [Nullable(true)] [DataLength(1)] public string IsTakeOver { get { return isTakeOver; } set { isTakeOver = value; } } /// /// 是否已打开语音对讲(0否,1是) /// [Description("是否已打开语音对讲(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IsOpenSound { get { return isOpenSound; } set { isOpenSound = value; } } } }