using System; using System.Runtime.Serialization; namespace TProduct.Model { [DataContract] [Serializable] public class TestNoticeRecordView : TestNoticeItem, System.ICloneable { public TestNoticeRecordView() { } public TestNoticeRecordView(Model.TestNoticeItemEx item) : base(item) { this.GroupSortCode = item.GroupSortCode; this.GroupContent = item.GroupContent; this.NoticeItemID = item.ID; } /// /// /// public int GroupSortCode { get; set; } /// /// /// public string GroupContent { get; set; } /// /// /// public long RecordID { get; set; } /// /// /// public long TestItemID { get; set; } /// /// /// public long NoticeItemID { get; set; } /// /// /// public string Value { get; set; } = ""; /// /// 数据库中的值, 用于比较值是否已修改 /// public string DsValue { get; set; } = ""; /// /// /// public string Note { get; set; } = ""; /// /// 数据库中的值, 用于比较值是否已修改 /// public string DsNote { get; set; } = ""; } }