yangyin
2025-02-24 b3b65a002fe68b1383314098790f5a153b87765f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DPumpHydr.WinFrmUI.Volute.ViewModel
{
    public enum eOutflowShapeStyle
    {
        未知=-1,
        中心出口_垂直法兰面流出 = 0,
        侧面出口_曲线连接 = 1,
        侧面出口_直线连接 = 2
    }
    public enum eOutflowLinkStyle
    { 
        曲线 = 0,
        直线圆弧 = 1, 
    }
}