namespace Yw.Entity { /// /// 系统单位名称 /// [SugarTable("sys_unit_name")] public class SysUnitName : BaseEntity, System.ICloneable { /// /// /// public SysUnitName() { } /// /// /// public SysUnitName(SysUnitName rhs) : base(rhs) { this.ValueID = rhs.ValueID; this.LangID = rhs.LangID; this.Name = rhs.Name; } /// /// 值id /// public long ValueID { get; set; } /// /// 语言id /// public long LangID { get; set; } /// /// 名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string Name { get; set; } /// /// /// public SysUnitName Clone() { return (SysUnitName)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }