using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Domain
{
///
/// 生产线明细表
///
[Comment("生产线明细表")]
public class ProdLineDetail
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 生产线
///
[Comment("生产线")]
public string Line { get; set; }
///
/// 物料编号
///
[Comment("物料编号")]
public string Part { get; set; }
///
/// 单位标准产能=Uph
///
[Comment("单位标准产能")]
public decimal Rate { get; set; }
///
/// 工序
///
[Comment("工序")]
public int? Op { get; set; }
///
/// 是否有效:1-有效;0-无效
///
[Comment("是否有效")]
public bool IsActive { get; set; }
///
/// 当前产线提前期(小时)
///
[Comment("当前产线提前期")]
public decimal SetupTime { get; set; }
}
}