using System.ComponentModel.DataAnnotations.Schema;
using System;
using System.Collections.Generic;
using System.Text;
namespace ProductionLineMonitor.Core.Models
{
///
/// 产线表
///
[Table("ProductionLines")]
public class ProductionLine : Base
{
///
/// 产线名称
///
public string Name { get; set; }
///
/// 楼层
///
public int Floor { get; set; }
///
/// 线别
///
public int Line { get; set; }
///
/// 线别别名
///
public string LineName { get; set; } = "";
///
/// 顺序
///
public int Order { get; set; }
///
/// 小时产能数据获取Topic
///
public string HourDataTopic { get; set; }
///
/// 制成分类 EPD/FPL
///
public string MakeClassification { get; set; }
///
/// 厂号
///
public string FactoryNo { get; set; }
}
}