namespace Yw.Model
{
///
/// 系统单位转换
///
public partial class SysUnitTransfer : BaseModel, System.ICloneable
{
///
///
///
public SysUnitTransfer() { }
///
///
///
public SysUnitTransfer(SysUnitTransfer rhs) : base(rhs)
{
this.TypeID = rhs.TypeID;
this.FromValueID = rhs.FromValueID;
this.ToValueID = rhs.ToValueID;
this.Expression = rhs.Expression;
}
///
///
///
public void Reset(SysUnitTransfer rhs)
{
this.ID = rhs.ID;
this.TypeID = rhs.TypeID;
this.FromValueID = rhs.FromValueID;
this.ToValueID = rhs.ToValueID;
this.Expression = rhs.Expression;
}
///
/// 类型id
///
public long TypeID { get; set; }
///
/// 来源id
///
public long FromValueID { get; set; }
///
/// 目标id
///
public long ToValueID { get; set; }
///
/// 计算表达式
///
public string Expression { get; set; }
///
///
///
public SysUnitTransfer Clone()
{
return new SysUnitTransfer(this);
}
object ICloneable.Clone()
{
return Clone();
}
}
}