duheng
2024-12-04 7079cbb505471a8d3251cac4e27c7a3841f8e656
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.Assets
{
    public enum eAdaptingType
    {
        /// <summary>
        /// 弯头
        /// </summary>
        [Display(Name = "弯头")]
        Elbow = 0,
 
        /// <summary>
        /// 三通
        /// </summary>
        [Display(Name = "三通")]
        Tee = 1,
 
        /// <summary>
        /// 四通
        /// </summary>
        [Display(Name = "四通")]
        Cross = 2,
    }
}