using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations;
namespace IStation.Model
{
///
/// 第三方系统对象映射关系
///
public partial class OtherObjectMapping : System.ICloneable
{
///
///
///
public OtherObjectMapping() { }
///
///
///
public OtherObjectMapping(OtherObjectMapping rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.SysID = rhs.SysID;
this.SysType = rhs.SysType;
this.OtherSystemID = rhs.OtherSystemID;
this.OtherObjectId = rhs.OtherObjectId;
this.CreateTime = rhs.CreateTime;
this.CreateUserID = rhs.CreateUserID;
this.UpdateTime = rhs.UpdateTime;
this.UpdateUserID = rhs.UpdateUserID;
}
///
///
///
public void Reset(OtherObjectMapping rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.SysID = rhs.SysID;
this.SysType = rhs.SysType;
this.OtherSystemID = rhs.OtherSystemID;
this.OtherObjectId = rhs.OtherObjectId;
this.CreateTime = rhs.CreateTime;
this.CreateUserID = rhs.CreateUserID;
this.UpdateTime = rhs.UpdateTime;
this.UpdateUserID = rhs.UpdateUserID;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 系统类型
///
public string SysType { get; set; }
///
/// 系统标识
///
public long SysID { get; set; }
///
/// 第三方系统标识
///
public long OtherSystemID { get; set; }
///
/// 第三方对象标识
///
public string OtherObjectId { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 创建用户标识
///
public long CreateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 更新用户标识
///
public long? UpdateUserID { get; set; }
///
///
///
public OtherSystem Clone()
{
return (OtherSystem)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}