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_WEIGHT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-23SFAF86 时间:2021-11-22 /// public class CmmMonitorWeightEntity { /// /// 采集编号(GUID) /// private string weightNo = ""; /// /// 秤点编号 /// private string scalePointNo = ""; /// /// 秤点名称 /// private string scalePointName = ""; /// /// 计量点编号 /// private string baseSpotNo = ""; /// /// 计量点名称 /// private string baseSpotName = ""; /// /// 采集重量 /// private string collectWeight = ""; /// /// 采集开始时间(YYYY-MM-DD HH:mm:SS) /// private string collectStartTime = ""; /// /// 采集结束时间(YYYY-MM-DD HH:mm:SS) /// private string collectEndTime = ""; /// /// 采集时长 /// private decimal? collectTime = null; /// /// 计量点类型编号 /// private string spotTypeNo = ""; /// /// 计量点类型名称 /// private string spotTypeName = ""; /// /// 作业编号 /// private string actualFirstNo = ""; /// /// 采集编号(GUID) /// [Description("采集编号(GUID)")] [Nullable(false)] [DataLength(40)] public string WeightNo { get { return weightNo; } set { weightNo = value; } } /// /// 秤点编号 /// [Description("秤点编号")] [Nullable(true)] [DataLength(20)] public string ScalePointNo { get { return scalePointNo; } set { scalePointNo = value; } } /// /// 秤点名称 /// [Description("秤点名称")] [Nullable(true)] [DataLength(50)] public string ScalePointName { get { return scalePointName; } set { scalePointName = value; } } /// /// 计量点编号 /// [Description("计量点编号")] [Nullable(false)] [DataLength(20)] public string BaseSpotNo { get { return baseSpotNo; } set { baseSpotNo = value; } } /// /// 计量点名称 /// [Description("计量点名称")] [Nullable(false)] [DataLength(40)] public string BaseSpotName { get { return baseSpotName; } set { baseSpotName = value; } } /// /// 采集重量 /// [Description("采集重量")] [Nullable(false)] [DataLength(30)] public string CollectWeight { get { return collectWeight; } set { collectWeight = value; } } /// /// 采集开始时间(YYYY-MM-DD HH:mm:SS) /// [Description("采集开始时间(YYYY-MM-DD HH:mm:SS)")] [Nullable(true)] public string CollectStartTime { get { return collectStartTime; } set { collectStartTime = value; } } /// /// 采集结束时间(YYYY-MM-DD HH:mm:SS) /// [Description("采集结束时间(YYYY-MM-DD HH:mm:SS)")] [Nullable(true)] public string CollectEndTime { get { return collectEndTime; } set { collectEndTime = value; } } /// /// 采集时长 /// [Description("采集时长")] [Nullable(true)] [DataLength(10)] public decimal? CollectTime { get { return collectTime; } set { collectTime = value; } } /// /// 计量点类型编号 /// [Description("计量点类型编号")] [Nullable(true)] [DataLength(20)] public string SpotTypeNo { get { return spotTypeNo; } set { spotTypeNo = value; } } /// /// 计量点类型名称 /// [Description("计量点类型名称")] [Nullable(true)] [DataLength(30)] public string SpotTypeName { get { return spotTypeName; } set { spotTypeName = value; } } /// /// 作业编号 /// [Description("作业编号")] [Nullable(true)] [DataLength(20)] public string ActualFirstNo { get { return actualFirstNo; } set { actualFirstNo = value; } } } }