chenn
2025-04-19 96095f8ac4b464540cd2c0bd7308916a137c5041
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.OpenFwUI.Volute
{
    public enum eOutflowShapeStyle
    {
        未知=-1,
        中心出口 = 0,
        侧面出口 = 1,
        侧面对齐出口 = 2
    }
    public enum eOutflowLinkStyle
    { 
        曲线 = 0,
        直线圆弧 = 1, 
    }
}