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