lixiaojun
2024-08-22 ee519849b37d042953d015562f69278558693df3
Yw.Service.DOCS.Core/02-model/SysCommFile.cs
@@ -3,7 +3,7 @@
    /// <summary>
    /// 系统通用文件
    /// </summary>
    public class SysCommFile : BaseModel, System.ICloneable
    public class SysCommFile : BaseModel, IFlags, ISorter, System.ICloneable
    {
        /// <summary>
        /// 
@@ -21,9 +21,9 @@
            this.FileSize = rhs.FileSize;
            this.FileSuffix = rhs.FileSuffix;
            this.Catagory = rhs.Catagory;
            this.Flags = rhs.Flags;
            this.StorageHouse = rhs.StorageHouse;
            this.StorageCode = rhs.StorageCode;
            this.Flags = rhs.Flags?.ToList();
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -40,9 +40,9 @@
            this.FileSize = rhs.FileSize;
            this.FileSuffix = rhs.FileSuffix;
            this.Catagory = rhs.Catagory;
            this.Flags = rhs.Flags;
            this.StorageHouse = rhs.StorageHouse;
            this.StorageCode = rhs.StorageCode;
            this.Flags = rhs.Flags?.ToList();
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -78,11 +78,6 @@
        public string Catagory { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public List<string> Flags { get; set; }
        /// <summary>
        /// 存储仓库
        /// </summary>   
        public string StorageHouse { get; set; }
@@ -93,6 +88,11 @@
        public string StorageCode { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public List<string> Flags { get; set; }
        /// <summary>
        /// 排序
        /// </summary>
        public int SortCode { get; set; }