From f460fd2c628ab56db7450d70f3b7ad4b3524e6c8 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期一, 02 十二月 2024 14:33:48 +0800 Subject: [PATCH] 水泵界面控件 --- Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeSeries.cs | 27 ++++++++++++++------------- 1 files changed, 14 insertions(+), 13 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeSeries.cs b/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeSeries.cs index 5c74b3e..858cdbf 100644 --- a/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeSeries.cs +++ b/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeSeries.cs @@ -7,7 +7,7 @@ /// </summary> [SysType("assets_pipe_series")] [SugarTable("assets_pipe_series")] - public class AssetsPipeSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable + public class AssetsPipeSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable { /// <summary> /// @@ -21,20 +21,31 @@ public AssetsPipeSeries(AssetsPipeSeries 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> /// 鍚嶇О /// </summary> public string Name { get; set; } + + /// <summary> + /// 鎵�灞炵被鍒獻D + /// </summary> + public long CatalogID { get; set; } /// <summary> /// 鍙傛暟 @@ -52,19 +63,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