ningshuxia
2025-03-13 25d1bf4c50f43cf6690c5ac92824959865c9d78f
Dto/PBS.Dto/01-place/PlaceDto.cs
@@ -1,4 +1,6 @@
namespace PBS.Dto
using HStation.PBS;
namespace PBS.Dto
{
    /// <summary>
    /// 场所
@@ -8,7 +10,8 @@
        /// <summary>
        ///
        /// </summary>
        public PlaceDto() { }
        public PlaceDto()
        { }
        /// <summary>
        ///
@@ -24,7 +27,7 @@
            this.Paras = rhs.Paras == null ? null : new(rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.TagName = rhs.TagName;
            this.UseStatus = (int)rhs.UseStatus;
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -47,7 +50,7 @@
        /// <summary>
        /// 场所类型
        ///</summary> 
        public int PlaceType { get; set; }
        public ePlaceType PlaceType { get; set; }
        /// <summary>
        /// 场所信息
@@ -77,7 +80,7 @@
        /// <summary>
        /// 使用状态
        ///</summary> 
        public int UseStatus { get; set; }
        public Yw.Model.eUseStatus UseStatus { get; set; }
        /// <summary>
        /// 排序码
@@ -88,8 +91,5 @@
        /// 说明
        ///</summary> 
        public string Description { get; set; }
    }
}