/// <summary> /// local implementation of Equals based on unique value members /// </summary> public override bool Equals(object obj) { if (this == obj) { return(true); } if ((obj == null) || (obj.GetType() != this.GetType())) { return(false); } SystemApplicationBase castObj = (SystemApplicationBase)obj; return((castObj != null) && (this._systemapplication_id == castObj.SystemApplicationID)); }
/// <summary> /// CopyValue 方法 /// </summary> public virtual void CopyValue(SystemApplicationBase obj) { obj.SystemApplicationName = this._systemapplication_name; obj.SystemApplicationDescription = this._systemapplication_description; obj.SystemApplicationUrl = this._systemapplication_url; }