namespace Yw.Model
{
///
/// 系统单位语言
///
public class SysUnitLang : BaseModel, System.ICloneable
{
///
///
///
public SysUnitLang() { }
///
///
///
public SysUnitLang(SysUnitLang rhs) : base(rhs)
{
this.Name = rhs.Name;
this.Code = rhs.Code;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
///
///
public void Reset(SysUnitLang rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Code = rhs.Code;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 备注
///
public string Description { get; set; }
///
///
///
public SysUnitLang Clone()
{
return new SysUnitLang(this);
}
object ICloneable.Clone()
{
return Clone();
}
}
}