duheng
2024-11-19 ca5f300a7cef85d22b5e0f9d59d117c49f9909b3
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>
        /// 所属类别ID
        /// </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>
        /// 说明