Shuxia Ning
2024-08-20 d36d96955f33f03130d2de2f3ea8838f91600f05
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; }
 
    }
}