You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
449 B
15 lines
449 B
using HybirdFrameworkDriver.ModbusTcpMaster;
|
|
|
|
namespace Service.HelpRight.ElectricMeter;
|
|
|
|
public class ElectricMsg
|
|
{
|
|
/// <summary>
|
|
/// (当前)正向有功总电能低位
|
|
/// </summary>
|
|
public ModbusProperty<long> PositivePowerLow { get; set; } = new(0x100A);
|
|
/// <summary>
|
|
/// (当前)正向有功总电能高位
|
|
/// </summary>
|
|
public ModbusProperty<long> PositivePowerHight { get; set; } = new(0x100B);
|
|
} |