duheng
2024-12-20 3d69e0e8d953690b588c8a868bcf090f6119186b
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;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HStation.Assets
{
    public class PumpDataType
    {
        /// <summary>
        /// 额定电压
        /// </summary>
        public const string RatedVoltage = "RatedVoltage";
 
        /// <summary>
        /// 额定电流
        /// </summary>
        public const string RatedCurrent = "RatedCurrent";
        /// <summary>
        /// 额定因数
        /// </summary>
        public const string RatedFactor = "RatedFactor";
    }
}