2025-04-17 20:28:50 +08:00

36 lines
696 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Enums
{
public enum WaterMeterReadEnum
{
Type = 1,
Address = 2,
ControlCode = 9,
Len = 10,
DI = 11,
SER = 13,
[Description("累计流量")]
AccumulativeWaterflow = 14,
[Description("当月流量")]
MonthlyWaterflow = 19,
[Description("实时时间")]
RealTimeTime = 24,
}
public enum CommandChunkEnum188
{
A = 2,
C = 9,
L = 10,
DI = 11,
Data = 14
}
}