duheng
2024-09-15 c4d0807d911a3ee09cffaa9942638ea41cd414f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.ComponentModel.DataAnnotations;
 
namespace HStation.Service.Assets
{
    public enum eAdaptingType
    {
        /// <summary>
        /// 弯头
        /// </summary>
        [Display(Name = "弯头")]
        Elbow = 0,
 
        /// <summary>
        /// 三通
        /// </summary>
        [Display(Name = "三通")]
        Tee = 1,
 
        /// <summary>
        /// 四通
        /// </summary>
        [Display(Name = "四通")]
        Cross = 2,
    }
}