ningshuxia
3 天以前 b5435a4a54cf362961cdfd958c4c78efe0478224
Service/HStation.Service.Assets.Core/01-entity/18-Hydrant/AssetsHydrantSeries.cs
@@ -6,19 +6,19 @@
    /// 消火栓系列
    ///</summary>
    [SysType("assets-hydrant-series")]
    [SugarTable("assets_hydrant_series")]
    public class AssetsHydrantSeries : BaseEntity , IParas, IFlags, ITagName, ITreeSorter, System.ICloneable
    [SugarTable("assets_hydrant_series")]
    public class AssetsHydrantSeries : BaseEntity, IParas, IFlags, ITagName, ITreeSorter, System.ICloneable
    {
         /// <summary>
         ///
         /// </summary>
         public AssetsHydrantSeries() { }
        /// <summary>
        ///
        /// </summary>
        public AssetsHydrantSeries() { }
         /// <summary>
         ///
         /// </summary>
         public AssetsHydrantSeries(AssetsHydrantSeries rhs) : base(rhs)
         {
        /// <summary>
        ///
        /// </summary>
        public AssetsHydrantSeries(AssetsHydrantSeries rhs) : base(rhs)
        {
            this.CatalogID = rhs.CatalogID;
            this.Name = rhs.Name;
            this.ParentIds = rhs.ParentIds;
@@ -27,71 +27,71 @@
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
         }
        }
        /// <summary>
        /// 所属类别ID 
        ///</summary>
        public long CatalogID { get; set; }
        /// <summary>
        /// 名称 
        ///</summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        [SugarColumn(Length = 50, IsNullable = true)]
        public string Name { get; set; }
        /// <summary>
        /// 父级id列表(版本控制 
        ///</summary>
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        public string ParentIds { 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 AssetsHydrantSeries Clone()
        {
         return (AssetsHydrantSeries)this.MemberwiseClone();
            return (AssetsHydrantSeries)this.MemberwiseClone();
        }
        object ICloneable.Clone()
        {
         return this.MemberwiseClone();
            return this.MemberwiseClone();
        }
    }
}