using System.ComponentModel.DataAnnotations.Schema;
using System;
using System.Collections.Generic;
using System.Text;
namespace ProductionLineMonitor.Core.Models
{
///
/// 机台表
///
[Table("Machines")]
public class Machine : Base
{
///
/// 产线Id
///
public string ProductionLineId { get; set; }
///
/// 产线顺序
///
public int? ProductionLineOrder { get; set; }
///
/// 是否计入线统计
///
public bool? IsInclusionLineStatistics { get; set; }
///
/// 机台名称
///
public string Name { get; set; }
///
/// 类型
///
public string Type { get; set; }
///
/// Topic
///
public string Topic { get; set; }
///
/// 故障Topic
///
public string FaultTopic { get; set; }
}
}