namespace Yw.Entity
{
///
/// 系统单位语言
///
[SugarTable("sys_unit_lang")]
public class SysUnitLang : BaseEntity, ISorter, 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 string Name { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public SysUnitLang Clone()
{
return (SysUnitLang)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}