using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgResMgt.Mcms.entity { public class CmmActualWeightEntity { /// /// 无注释 /// private string baseSpotNo = ""; /// /// 无注释 /// private string recordNo = ""; /// /// 无注释 /// private string recordDate = ""; /// /// 无注释 /// [Description("无注释")] [Nullable(false)] [DataLength(20)] public string BaseSpotNo { get { return baseSpotNo; } set { baseSpotNo = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(false)] [DataLength(20)] public string RecordNo { get { return recordNo; } set { recordNo = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] public string RecordDate { get { return recordDate; } set { recordDate = value; } } } }