You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
769 B
37 lines
769 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.Entity
|
|
{
|
|
/// <summary>
|
|
/// 祖先实体
|
|
/// 创建者:李炳海
|
|
/// 创建日期:2014.8.8
|
|
/// </summary>
|
|
[Serializable]
|
|
public class BaseEntity
|
|
{
|
|
//浅复制
|
|
public object Clone()
|
|
{
|
|
return (Object)this.MemberwiseClone();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 错误信息
|
|
/// </summary>
|
|
public string InfoError { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否为新增
|
|
/// </summary>
|
|
public bool IsNewInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否为删除
|
|
/// </summary>
|
|
public bool IsDelete { get; set; }
|
|
}
|
|
}
|
|
|