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