lixiaojun
2024-12-10 31a8e93cf1cc708b68456b88aa5b0031a41eb47a
Service/HStation.Service.Assets.Core/01-entity/13-Package/AssetsPackageMain.cs
@@ -1,5 +1,4 @@
using System.ComponentModel.DataAnnotations;
using Yw.Entity;
using Yw.Entity;
namespace HStation.Entity
{
@@ -8,7 +7,7 @@
    /// </summary>
    [SysType("assets_package_main")]
    [SugarTable("assets_package_main")]
    public class AssetsPackageMain : BaseEntity, ISorter, System.ICloneable
    public class AssetsPackageMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable
    {
        /// <summary>
        ///
@@ -25,8 +24,11 @@
            this.Name = rhs.Name;//
            this.SeriesID = rhs.SeriesID;
            this.CatalogID = rhs.CatalogID;
            this.PumpCount = rhs.PumpCount;
            this.PumpTotal = rhs.PumpTotal;
            this.PumpUseCount = rhs.PumpUseCount;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -55,7 +57,7 @@
        /// <summary>
        /// 设备数量
        /// </summary>
        public int PumpCount { get; set; }
        public int PumpTotal { get; set; }
        /// <summary>
        /// 使用数量
@@ -63,6 +65,21 @@
        public int PumpUseCount { get; set; }
        /// <summary>
        /// 参数
        /// </summary>
        public string Paras { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public string Flags { get; set; }
        /// <summary>
        /// 标志
        /// </summary>
        public string TagName { get; set; }
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }