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