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 ParasConfigure : System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public ParasConfigure() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public ParasConfigure(ParasConfigure rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.Type = rhs.Type;
|
this.Value = rhs.Value;
|
this.Description = rhs.Description;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(ParasConfigure rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.Type = rhs.Type;
|
this.Value = rhs.Value;
|
this.Description = rhs.Description;
|
}
|
|
/// <summary>
|
/// 标识
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
/// 客户标识
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 类型
|
/// </summary>
|
public string Type { get; set; }
|
|
/// <summary>
|
/// 值
|
/// </summary>
|
public string Value { get; set; }
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
/// <returns></returns>
|
public ParasConfigure Clone()
|
{
|
return (ParasConfigure)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|