lixiaojun
2024-12-09 25f7d54d23dd47d6f2bfd91e7edfd218a4b9ec3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace HStation.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class ToPerformCurveDbStringInput
    {
        /// <summary>
        /// 图形类型
        /// </summary>
        public HStation.PhartRelation.eGraphType GraphType { get; set; }
 
        /// <summary>
        /// 性能类型
        /// </summary>
        public Yw.Pump.eFeatType FeatType { get; set; }
 
        /// <summary>
        /// 点列表
        /// </summary>
        public List<Point2dDto> PointList { get; set; }
 
    }
}