集成,总结MES功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
959 B

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :工单状态
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 :2023/7/18 18:07:21
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("work_info_status")]
  10. public class Pztj_WorkInfoStatusEntity : DEntityBase
  11. {
  12. /// <summary>
  13. /// 工单Id
  14. /// </summary>
  15. [SugarColumn(IsNullable = true)]
  16. public string WorkId { get; set; }
  17. /// <summary>
  18. /// 工单状态
  19. /// </summary>
  20. [SugarColumn(IsNullable = true)]
  21. public WorkOrderStatusEnum? Status { get; set; }
  22. /// <summary>
  23. /// 创建时间
  24. /// </summary>
  25. [SugarColumn(IsNullable = true)]
  26. public DateTime CreateTime { get; set; }
  27. /// <summary>
  28. /// 备注
  29. /// </summary>
  30. [SugarColumn(IsNullable = true)]
  31. public string Remark { get; set; }
  32. }
  33. }