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