using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using SqlSugar; namespace IStation.Entity { /// /// 第三方对象映射关系 /// [SugarTable("other_object_mapping")] public class OtherObjectMapping : BaseTraceEntity, System.ICloneable { /// /// /// public OtherObjectMapping() { } /// /// /// public OtherObjectMapping(OtherObjectMapping rhs) : base(rhs) { this.CorpID = rhs.CorpID; this.SysType = rhs.SysType; this.SysID = rhs.SysID; this.OtherSystemID = rhs.OtherSystemID; this.OtherObjectId = rhs.OtherObjectId; } /// /// 客户标识 /// public long CorpID { get { return _corpid; } set { _corpid = value; } } private long _corpid; /// /// 系统类型 /// public string SysType { get { return _systype; } set { _systype = value; } } private string _systype; /// /// 系统标识 /// public long SysID { get { return _sysid; } set { _sysid = value; } } private long _sysid; /// /// 第三方系统标识 /// public long OtherSystemID { get { return _othersystemid; } set { _othersystemid = value; } } private long _othersystemid; /// /// 第三方对象标识 /// public string OtherObjectId { get { return _otherobjectid; } set { _otherobjectid = value; } } private string _otherobjectid; /// /// /// public OtherObjectMapping Clone() { return (OtherObjectMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }