using System;
using System.Runtime.Serialization;
namespace TProduct.Model
{
[DataContract]
[Serializable]
public class TestNoticeItem : System.ICloneable
{
public TestNoticeItem()
{
}
public TestNoticeItem(TestNoticeItem rhs)
{
this.ID = rhs.ID;
this.SortCode = rhs.SortCode;
this.Content = rhs.Content;
this.MatterID = rhs.MatterID;
this.GroupID = rhs.GroupID;
this.ValueType = rhs.ValueType;
this.DefaultValue = rhs.DefaultValue;
this.EnumValue = rhs.EnumValue;
this.StrItemParas = rhs.StrItemParas;
}
///
///
///
public long ID { get; set; }
///
///
///
public int SortCode { get; set; }
///
///
///
public string Content { get; set; }
///
///
///
public long MatterID { get; set; }
///
///
///
public long GroupID { get; set; }
///
///
///
public int ValueType { get; set; }
///
///
///
public string DefaultValue { get; set; }
///
///
///
public string EnumValue { get; set; }
///
///
///
public string StrItemParas { get; set; }
public TestNoticeItem Clone()
{
return (TestNoticeItem)this.MemberwiseClone();
}
object ICloneable.Clone() { { return this.MemberwiseClone(); } }
}
}