namespace Yw.Model
{
///
/// 系统单位名称
///
public class SysUnitName : BaseModel, System.ICloneable
{
///
///
///
public SysUnitName() { }
///
///
///
public SysUnitName(SysUnitName rhs) : base(rhs)
{
this.ValueID = rhs.ValueID;
this.LangID = rhs.LangID;
this.Name = rhs.Name;
}
///
///
///
public void Reset(SysUnitName rhs)
{
this.ID = rhs.ID;
this.ValueID = rhs.ValueID;
this.LangID = rhs.LangID;
this.Name = rhs.Name;
}
///
/// 值id
///
public long ValueID { get; set; }
///
/// 语言id
///
public long LangID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
///
///
public SysUnitName Clone()
{
return new SysUnitName(this);
}
object ICloneable.Clone()
{
return Clone();
}
}
}