添加项目文件。

This commit is contained in:
Administrator
2026-08-06 09:23:30 +08:00
parent 771e23e00a
commit 4660ceee70
604 changed files with 138380 additions and 0 deletions
+117
View File
@@ -0,0 +1,117 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
public class WattrMeter
{
/// <summary>
/// 工厂代码
/// </summary>
public System.String siteCode { get; set; }
/// <summary>
/// 产线编号
/// </summary>
public System.String lineCode { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public System.String equipNum { get; set; }
/// <summary>
/// 电表编号
/// </summary>
public System.String electricMeterNum { get; set; }
/// <summary>
/// 员工账号
/// </summary>
public System.String userName { get; set; }
/// <summary>
/// 工序编号
/// </summary>
public System.String specName { get; set; }
/// <summary>
/// 采集时间
/// </summary>
public System.String recordDate { get; set; }
/// <summary>
/// 有功电能(累计电能)KWH
/// </summary>
public System.Decimal? accumulatedElectricity { get; set; }
/// <summary>
/// A相电压 V
/// </summary>
public System.Decimal? phaseVoltageA { get; set; }
/// <summary>
/// B相电压 V
/// </summary>
public System.Decimal? phaseVoltageB { get; set; }
/// <summary>
/// C相电压 V
/// </summary>
public System.Decimal? phaseVoltageC { get; set; }
/// <summary>
/// A相电流
/// </summary>
public System.Decimal? phaseCurrentA { get; set; }
/// <summary>
/// B相电流
/// </summary>
public System.Decimal? phaseCurrentB { get; set; }
/// <summary>
/// C相电流
/// </summary>
public System.Decimal? phaseCurrentC { get; set; }
/// <summary>
/// A相功率
/// </summary>
public System.Decimal? phasePowerA { get; set; }
/// <summary>
/// B相功率
/// </summary>
public System.Decimal? phasePowerB { get; set; }
/// <summary>
/// C相功率
/// </summary>
public System.Decimal? phasePowerC { get; set; }
/// <summary>
/// 总有功功率
/// </summary>
public System.Decimal? activePower { get; set; }
/// <summary>
/// 总功率因数
/// </summary>
public System.Decimal? powerFactor { get; set; }
/// <summary>
/// 电流变比
/// </summary>
public System.Decimal? pt { get; set; }
/// <summary>
/// 电压变比
/// </summary>
public System.Decimal? ct { get; set; }
}
}