namespace JinYuan.MES.Models { public class WattrMeter { /// /// 工厂代码 /// public System.String siteCode { get; set; } /// /// 产线编号 /// public System.String lineCode { get; set; } /// /// 设备编号 /// public System.String equipNum { get; set; } /// /// 电表编号 /// public System.String electricMeterNum { get; set; } /// /// 员工账号 /// public System.String userName { get; set; } /// /// 工序编号 /// public System.String specName { get; set; } /// /// 采集时间 /// public System.String recordDate { get; set; } /// /// 有功电能(累计电能)KWH /// public System.Decimal? accumulatedElectricity { get; set; } /// /// A相电压 V /// public System.Decimal? phaseVoltageA { get; set; } /// /// B相电压 V /// public System.Decimal? phaseVoltageB { get; set; } /// /// C相电压 V /// public System.Decimal? phaseVoltageC { get; set; } /// /// A相电流 /// public System.Decimal? phaseCurrentA { get; set; } /// /// B相电流 /// public System.Decimal? phaseCurrentB { get; set; } /// /// C相电流 /// public System.Decimal? phaseCurrentC { get; set; } /// /// A相功率 /// public System.Decimal? phasePowerA { get; set; } /// /// B相功率 /// public System.Decimal? phasePowerB { get; set; } /// /// C相功率 /// public System.Decimal? phasePowerC { get; set; } /// /// 总有功功率 /// public System.Decimal? activePower { get; set; } /// /// 总功率因数 /// public System.Decimal? powerFactor { get; set; } /// /// 电流变比 /// public System.Decimal? pt { get; set; } /// /// 电压变比 /// public System.Decimal? ct { get; set; } } }