using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace ProductionLineMonitor.Core.Models
{
///
/// 机台能耗表
///
[Table("MachinePowerConsumptions")]
public class MachinePowerConsumption : Base
{
///
/// 机台Id
///
public string MachineId { get; set; }
///
/// 数据时间
///
public DateTime DataTime { get; set; }
///
/// 耗电量 kW·h 简称 度
///
public float PowerConsumption { get; set; }
///
/// 产能
///
public int Capacity { get; set; }
}
}