QualityLineWorkDetail.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.Model.Production
  9. {
  10. /// <summary>
  11. /// 产线休息时间记录表
  12. /// </summary>
  13. public class QualityLineWorkDetail
  14. {
  15. /// <summary>
  16. /// 主键
  17. /// </summary>
  18. [Comment("主键")]
  19. [Key]
  20. public int RecID { get; set; }
  21. /// <summary>
  22. /// 域名
  23. /// </summary>
  24. [Comment("域名")]
  25. public string Domain { get; set; }
  26. /// <summary>
  27. /// 生产线
  28. /// </summary>
  29. [Comment("生产线")]
  30. public string ProdLine { get; set; }
  31. /// <summary>
  32. /// 项次号
  33. /// </summary>
  34. [Comment("项次号")]
  35. public string Line { get; set; }
  36. /// <summary>
  37. /// 休息开始时间点(例如 11:50)
  38. /// </summary>
  39. [Comment("休息开始时间点")]
  40. public string RestTimePoint { get; set; }
  41. /// <summary>
  42. /// 休息时长(分钟)
  43. /// </summary>
  44. [Comment("休息时长")]
  45. public int RestTime { get; set; }
  46. /// <summary>
  47. /// 是否有效
  48. /// </summary>
  49. [Comment("是否有效")]
  50. public int IsActive { get; set; }
  51. }
  52. }