using Yw.Entity; namespace HStation.Entity { /// /// /// [SysType("assets-package_series-manufacturer-mapping")] [SugarTable("assets_package_series_manufacturer_mapping")] public class AssetsPackageMfrMapping : BaseEntity, IParas, IFlags, ITagName, System.ICloneable { /// /// /// public AssetsPackageMfrMapping() { } /// /// /// public AssetsPackageMfrMapping(AssetsPackageMfrMapping rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.ManufacturerID = rhs.ManufacturerID; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.Description = rhs.Description; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 厂家ID /// public long ManufacturerID { get; set; } /// /// /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Paras { get; set; } /// /// /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Flags { get; set; } /// /// /// [SugarColumn(Length = 500, IsNullable = true)] public string TagName { get; set; } /// /// /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public AssetsPackageMfrMapping Clone() { return (AssetsPackageMfrMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }