using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMAPP.Entity { /// /// 祖先实体 /// 创建者:李炳海 /// 创建日期:2014.8.8 /// [Serializable] public class BaseEntity { //浅复制 public object Clone() { return (Object)this.MemberwiseClone(); } /// /// 错误信息 /// public string InfoError { get; set; } /// /// 是否为新增 /// public bool IsNewInfo { get; set; } /// /// 是否为删除 /// public bool IsDelete { get; set; } } }