Shuxia Ning
2024-12-02 13e69c09c5ac97e0294d64617dfb934e34bb4264
Service/HStation.Service.Assets.Core/02-model/04-Fourlink/AssetsFourlinkMain.cs
@@ -6,7 +6,7 @@
    /// 业务站
    /// </summary>
    [SysType("assets_fourlink_main")]
    public class AssetsFourlinkMain : BaseModel, ISorter, System.ICloneable
    public class AssetsFourlinkMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
    {
        /// <summary>
        ///
@@ -22,6 +22,9 @@
            this.MinorLoss = rhs.MinorLoss;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -29,12 +32,15 @@
        public void Reset(AssetsFourlinkMain rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.SeriesID = rhs.SeriesID;
            this.MinorLoss = rhs.MinorLoss;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.SortCode = rhs.SortCode;
            this.Name = rhs.Name;
            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.TagName = rhs.TagName;
            this.Description = rhs.Description;
        }
@@ -69,6 +75,21 @@
        public List<string> KeyWord { get; set; }
        /// <summary>
        /// 参数
        /// </summary>
        public Dictionary<string, string> Paras { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public List<string> Flags { get; set; }
        /// <summary>
        /// 标志
        /// </summary>
        public string TagName { get; set; }
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }