|
|
/////////////////////////////////////////////////////////////////
|
|
|
//
|
|
|
// (C) Copyright 2013, Kenneth, Inc.
|
|
|
// All rights reserved. Confidential. Except as pursuant
|
|
|
// to a written agreement with Kenneth, this software may
|
|
|
// not be used or distributed. This software may be covered
|
|
|
// by one or more patents.
|
|
|
//
|
|
|
// 本软件为Kenneth开发,版权所有,违者必究,320325198102218110,23810511@qq.com
|
|
|
//
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Data;
|
|
|
using System.Reflection;
|
|
|
using GummingCommon;
|
|
|
|
|
|
namespace GummingEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// HardParameter
|
|
|
/// </summary>
|
|
|
[Serializable]
|
|
|
public partial class HardParameterEntity: ViewModelBase, ICloneable
|
|
|
{
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private string _RecId;
|
|
|
public string RecId { get{return _RecId;}
|
|
|
set{
|
|
|
_RecId= value;
|
|
|
OnPropertyChanged("RecId");}}
|
|
|
/// <summary>
|
|
|
/// 参数Key
|
|
|
/// </summary>
|
|
|
private string _ParaKey;
|
|
|
public string ParaKey { get{return _ParaKey;}
|
|
|
set{
|
|
|
_ParaKey= value;
|
|
|
OnPropertyChanged("ParaKey");}}
|
|
|
/// <summary>
|
|
|
/// 参数值
|
|
|
/// </summary>
|
|
|
private string _ParaValue;
|
|
|
public string ParaValue { get{return _ParaValue;}
|
|
|
set{
|
|
|
_ParaValue= value;
|
|
|
OnPropertyChanged("ParaValue");}}
|
|
|
/// <summary>
|
|
|
/// 参数编号
|
|
|
/// </summary>
|
|
|
private string _ParaCode;
|
|
|
public string ParaCode { get{return _ParaCode;}
|
|
|
set{
|
|
|
_ParaCode= value;
|
|
|
OnPropertyChanged("ParaCode");}}
|
|
|
/// <summary>
|
|
|
/// 参数名称
|
|
|
/// </summary>
|
|
|
private string _ParaName;
|
|
|
public string ParaName { get{return _ParaName;}
|
|
|
set{
|
|
|
_ParaName= value;
|
|
|
OnPropertyChanged("ParaName");}}
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private int? _OrderBy;
|
|
|
public int? OrderBy { get{return _OrderBy;}
|
|
|
set{
|
|
|
_OrderBy= value;
|
|
|
OnPropertyChanged("OrderBy");}}
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private string _CreateBy;
|
|
|
public string CreateBy { get{return _CreateBy;}
|
|
|
set{
|
|
|
_CreateBy= value;
|
|
|
OnPropertyChanged("CreateBy");}}
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private DateTime? _CreateTime;
|
|
|
public DateTime? CreateTime { get{return _CreateTime;}
|
|
|
set{
|
|
|
_CreateTime= value;
|
|
|
OnPropertyChanged("CreateTime");}}
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private string _ModifyBy;
|
|
|
public string ModifyBy { get{return _ModifyBy;}
|
|
|
set{
|
|
|
_ModifyBy= value;
|
|
|
OnPropertyChanged("ModifyBy");}}
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private DateTime? _ModifyTime;
|
|
|
public DateTime? ModifyTime { get{return _ModifyTime;}
|
|
|
set{
|
|
|
_ModifyTime= value;
|
|
|
OnPropertyChanged("ModifyTime");}}
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
private int? _IsActive;
|
|
|
public int? IsActive { get{return _IsActive;}
|
|
|
set{
|
|
|
_IsActive= value;
|
|
|
OnPropertyChanged("IsActive");}}
|
|
|
|
|
|
public object Clone()
|
|
|
{
|
|
|
HardParameterEntity obj = new HardParameterEntity();
|
|
|
Type t = this.GetType();
|
|
|
PropertyInfo[] properties = t.GetProperties();
|
|
|
foreach (PropertyInfo pi in properties)
|
|
|
{
|
|
|
if (pi.CanWrite)
|
|
|
{
|
|
|
object value = pi.GetValue(this, null);
|
|
|
if (obj.GetType().GetProperty(pi.Name) != null)
|
|
|
{
|
|
|
pi.SetValue(obj, value, null);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
return obj;
|
|
|
}
|
|
|
}
|
|
|
} |