Shuxia Ning
2024-11-08 0cd48df8ccca96a8a0117a508c342a90dc2eacb8
Dto/HStation.Dto.Assets.Core/08-Sprinkler/02-SprinklerSeries/AssetsSprinklerSeriesDto.cs
ÎļþÃû´Ó Dto/HStation.Dto.Assets.Core/08-NozzleManage/01-NozzleSeries/NozzleSeriesDto.cs ÐÞ¸Ä
@@ -3,20 +3,20 @@
namespace HStation.Dto.Assets
{
    public class AssetsNozzleSeriesDto
    public class AssetsSprinklerSeriesDto
    {
        public AssetsNozzleSeriesDto()
        public AssetsSprinklerSeriesDto()
        {
        }
        public AssetsNozzleSeriesDto(Model.AssetsSprinklerSeries rhs)
        public AssetsSprinklerSeriesDto(Model.AssetsSprinklerSeries rhs)
        {
            this.ID = rhs.ID;
            this.ParentIds = rhs.ParentIds;
            this.Name = rhs.Name;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -25,6 +25,11 @@
        /// id
        /// </summary>
        public long ID { get; set; }
        /// <summary>
        /// çˆ¶çº§ID
        /// </summary>
        public List<long> ParentIds { get; set; }
        /// <summary>
        /// åç§°
@@ -47,18 +52,13 @@
        public string TagName { get; set; }
        /// <summary>
        /// ä½¿ç”¨çŠ¶æ€
        /// æŽ’序码
        /// </summary>
        public eUseStatus UseStatus { get; set; }
        public int SortCode { get; set; }
        /// <summary>
        /// è¯´æ˜Ž
        /// </summary>
        public string Description { get; set; }
        /// <summary>
        /// æŽ’序码
        /// </summary>
        public int SortCode { get; set; }
    }
}