using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Models { public class ElectricEnergyMeter : Base { /// /// 机台Id /// public string MachineId { get; set; } /// /// 电能表编号 /// public string SerialNumber { get; set; } = string.Empty; /// /// 监测点名称 /// public string Name { get; set; } = string.Empty; /// /// 是否启用 /// public bool Enable { get; set; } /// /// 顺序 /// public int Order { get; set; } } }