using System; using System.Runtime.Serialization; namespace TProduct.Model { [DataContract] [Serializable] public class TestNoticeMattter : System.ICloneable { public TestNoticeMattter() { } public TestNoticeMattter(TestNoticeMattter rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.TestType = rhs.TestType; this.ProductStyleID = rhs.ProductStyleID; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.UpdateUserID = rhs.UpdateUserID; this.UpdateTime = rhs.UpdateTime; this.StrMatterParas = rhs.StrMatterParas; } /// /// /// public long ID { get; set; } /// /// /// public string Name { get; set; } /// /// /// public int TestType { get; set; } /// /// /// public long ProductStyleID { get; set; } /// /// /// public long CreateUserID { get; set; } /// /// /// public DateTime CreateTime { get; set; } /// /// /// public long UpdateUserID { get; set; } /// /// /// public DateTime UpdateTime { get; set; } /// /// /// public string StrMatterParas { get; set; } public TestNoticeMattter Clone() { return (TestNoticeMattter)this.MemberwiseClone(); } object ICloneable.Clone() { { return this.MemberwiseClone(); } } } }