From a2a57963e160a319276c5c8499f16c9809056e4c Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期日, 17 十一月 2024 21:54:55 +0800 Subject: [PATCH] 修改资产表 --- Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs | 28 ++++++++++++++-------------- 1 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs index 028bab4..efcc509 100644 --- a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs +++ b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs @@ -7,7 +7,7 @@ /// </summary> [SysType("assets_compressor_series")] [SugarTable("assets_compressor_series")] - public class AssetsCompressorSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable + public class AssetsCompressorSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable { /// <summary> /// @@ -20,16 +20,26 @@ /// </summary> public AssetsCompressorSeries(AssetsCompressorSeries rhs) : base(rhs) { - this.ID = rhs.ID; + this.ParentIds = rhs.ParentIds; + this.CatalogID = rhs.CatalogID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; - this.UseStatus = rhs.UseStatus; - this.Type = rhs.Type; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } + + /// <summary> + /// 鐖剁骇id鍒楄〃锛堢増鏈帶鍒讹級 + /// </summary> + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + public string ParentIds { get; set; } + + /// <summary> + /// 鎵�灞炵被鍒獻D + /// </summary> + public long CatalogID { get; set; } /// <summary> /// 鍚嶇О @@ -52,19 +62,9 @@ public string TagName { get; set; } /// <summary> - /// 浣跨敤鐘舵�� - /// </summary> - public int UseStatus { get; set; } - - /// <summary> /// 鎺掑簭鐮� /// </summary> public int SortCode { get; set; } - - /// <summary> - /// 绫诲瀷 - /// </summary> - public string Type { get; set; } /// <summary> /// 璇存槑 -- Gitblit v1.9.3