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