duheng
2024-11-06 31e3f4ffdf7d566db391a5fcb94984f23e0abb02
Dto/HStation.Dto.Assets.Core/05-ElbowManage/02-ElbowMain/ElbowMainDto.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,77 @@
using HStation.Assets;
namespace HStation.Dto.Assets
{
    public class AssetsElbowMainDto
    {
        public AssetsElbowMainDto()
        { }
        public AssetsElbowMainDto(Model.AssetsElbowMain rhs)
        {
            this.ID = rhs.ID;
            this.SeriesID = rhs.SeriesID;
            this.Material = rhs.Material;
            this.Caliber = rhs.Caliber;
            this.Name = rhs.Name;
            this.MinorLoss = rhs.MinorLoss;
            this.KeyWord = rhs.KeyWord;
            this.Angle = rhs.Angle;
            this.ElbowLengthType = rhs.ElbowLengthType;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        public long ID { get; set; }
        /// <summary>
        /// åç§°
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        /// ç³»åˆ—ID
        /// </summary>
        public long SeriesID { get; set; }
        /// <summary>
        /// å£å¾„
        /// </summary>
        public double? Caliber { get; set; }
        /// <summary>
        /// ç®¡è·¯è¿žæŽ¥é•¿åº¦
        /// </summary>
        public eLengthType? ElbowLengthType { get; set; }
        /// <summary>
        /// è§’度
        /// </summary>
        public int? Angle { get; set; }
        /// <summary>
        /// ææ–™
        /// </summary>
        public string Material { get; set; }
        /// <summary>
        /// ç³»æ•°
        /// </summary>
        public double MinorLoss { get; set; }
        /// <summary>
        /// è¯†åˆ«å…³é”®å­—
        /// </summary>
        public string KeyWord { get; set; }
        /// <summary>
        /// æŽ’序码
        /// </summary>
        public int SortCode { get; set; }
        /// <summary>
        /// è¯´æ˜Ž
        /// </summary>
        public string Description { get; set; }
    }
}