duheng
2024-06-19 ebbe0f7a757500a7c07e12eabb2b1800b7d8f257
HStation.Service.Xhs.Core/01-entity/XhsProjectItemModel.cs
@@ -5,17 +5,18 @@
    /// <summary>
    /// 业务站
    /// </summary>
    [SysType("xhs-projectitembimface")]
    [SugarTable("xhs_projectitembimface")]
    [SysType("xhs-projectitemmodel")]
    [SugarTable("xhs_projectitemmodel")]
    public class XhsProjectItemModel : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable
    {
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModel() { }
        public XhsProjectItemModel()
        { }
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModel(XhsProjectItemModel rhs) : base(rhs)
        {
@@ -27,18 +28,20 @@
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        /// <summary>
        /// 项目ID
        /// </summary>
        public long ProjectID { get; set; }
        /// <summary>
        /// 在BIMFACE中的ID
        /// </summary>
        public string BimfaceID { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
        /// </summary>
        public string Name { get; set; }
        /// <summary>
@@ -77,7 +80,7 @@
        public int Version { get; set; }
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModel Clone()
        {
@@ -89,5 +92,4 @@
            return this.MemberwiseClone();
        }
    }
}