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 QualityLineWorkDetail
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 生产线
///
[Comment("生产线")]
public string ProdLine { get; set; }
///
/// 项次号
///
[Comment("项次号")]
public int Line { get; set; }
///
/// 休息开始时间点(例如 11:50)
///
[Comment("休息开始时间点")]
public string RestTimePoint { get; set; }
///
/// 休息时长(分钟)
///
[Comment("休息时长")]
public int RestTime { get; set; }
///
/// 是否有效
///
[Comment("是否有效")]
public bool IsActive { get; set; }
}
}