| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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.Model.Production
- {
- /// <summary>
- /// 产线休息时间记录表
- /// </summary>
- 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 string 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 int IsActive { get; set; }
- }
- }
|