From 3c8e996db701f2744af261e876455754ad182b62 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期五, 09 五月 2025 16:19:36 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0 --- Service/HStation.Service.Assets.Core/01-entity/20-Translation/AssetsTranslationMain.cs | 121 ++++++++++++++++++++++------------------ 1 files changed, 67 insertions(+), 54 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/20-Translation/AssetsTranslationMain.cs b/Service/HStation.Service.Assets.Core/01-entity/20-Translation/AssetsTranslationMain.cs index 1f7c249..53e6413 100644 --- a/Service/HStation.Service.Assets.Core/01-entity/20-Translation/AssetsTranslationMain.cs +++ b/Service/HStation.Service.Assets.Core/01-entity/20-Translation/AssetsTranslationMain.cs @@ -6,111 +6,124 @@ /// 杩囨浮浠� ///</summary> [SysType("assets-translation-main")] - [SugarTable("assets_translation_main")] - public class AssetsTranslationMain : BaseEntity , IParas, IFlags, ITagName, ISorter, System.ICloneable + [SugarTable("assets_translation_main")] + public class AssetsTranslationMain : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable { - /// <summary> - /// - /// </summary> - public AssetsTranslationMain() { } + /// <summary> + /// + /// </summary> + public AssetsTranslationMain() + { } - /// <summary> - /// - /// </summary> - public AssetsTranslationMain(AssetsTranslationMain rhs) : base(rhs) - { + /// <summary> + /// + /// </summary> + public AssetsTranslationMain(AssetsTranslationMain rhs) : base(rhs) + { this.Name = rhs.Name; this.SeriesID = rhs.SeriesID; - this.Caliber = rhs.Caliber; + this.StartDiameter = rhs.StartDiameter; + this.EndDiameter = rhs.EndDiameter; + this.Roughness = rhs.Roughness; + this.TranslationType = rhs.TranslationType; this.Material = rhs.Material; this.MinorLoss = rhs.MinorLoss; - this.KeyWord = rhs.KeyWord; + this.KeyWords = rhs.KeyWords; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; - } + } /// <summary> - /// 鍚嶇О + /// 鍚嶇О ///</summary> - [SugarColumn(Length = 50, IsNullable = true)] + [SugarColumn(Length = 50, IsNullable = true)] public string Name { get; set; } - + /// <summary> - /// 绯诲垪ID + /// 绯诲垪ID ///</summary> public long SeriesID { get; set; } - + /// <summary> - /// 鍙e緞 - ///</summary> - public double? Caliber { get; set; } - + /// 涓婃父鐩村緞 + /// </summary> + public double StartDiameter { get; set; } + /// <summary> - /// 鏉愭枡 + /// 涓嬫父鐩村緞 + /// </summary> + public double EndDiameter { get; set; } + + /// <summary> + /// 绮楃硻绯绘暟 + /// </summary> + public double Roughness { get; set; } + + /// <summary> + /// 杩囨浮浠剁被鍨� + /// </summary> + public string TranslationType { get; set; } + + /// <summary> + /// 鏉愭枡 ///</summary> - [SugarColumn(Length = 255, IsNullable = true)] + [SugarColumn(Length = 255, IsNullable = true)] public string Material { get; set; } - + /// <summary> - /// 灞�闃荤郴鏁� + /// 灞�闃荤郴鏁� ///</summary> public double MinorLoss { get; set; } - + /// <summary> - /// 璇嗗埆鍏抽敭瀛� + /// 璇嗗埆鍏抽敭瀛� ///</summary> - [SugarColumn(Length = 255, IsNullable = true)] - public string KeyWord { get; set; } - + [SugarColumn(Length = 255, IsNullable = true)] + public string KeyWords { get; set; } + /// <summary> - /// 鍙傛暟 + /// 鍙傛暟 ///</summary> - [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Paras { get; set; } - + /// <summary> - /// 鏍囩 + /// 鏍囩 ///</summary> - [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Flags { get; set; } - + /// <summary> - /// 鏍囧織 + /// 鏍囧織 ///</summary> - [SugarColumn(Length = 500, IsNullable = true)] + [SugarColumn(Length = 500, IsNullable = true)] public string TagName { get; set; } - + /// <summary> - /// 鎺掑簭鐮� + /// 鎺掑簭鐮� ///</summary> public int SortCode { get; set; } - + /// <summary> - /// 璇存槑 + /// 璇存槑 ///</summary> - [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } - /// <summary> /// /// </summary> public AssetsTranslationMain Clone() { - return (AssetsTranslationMain)this.MemberwiseClone(); + return (AssetsTranslationMain)this.MemberwiseClone(); } object ICloneable.Clone() { - return this.MemberwiseClone(); + return this.MemberwiseClone(); } - } -} - - - - +} \ No newline at end of file -- Gitblit v1.9.3