using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace IStation.Entity { /// /// 客户实体基类 /// public class CorpEntity : BaseEntity { /// /// /// public CorpEntity() { } /// /// /// public CorpEntity(CorpEntity rhs) : base(rhs) { this.CorpID = rhs.CorpID; } /// /// 客户标识 /// public virtual long CorpID { get { return _corpid; } set { _corpid = value; } } private long _corpid; } }