集成,总结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.
 
 
 
 

37 lines
1.0 KiB

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :工艺路线
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 : 2023/7/17 17:01:26
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("craft_Steps")]
  10. public class Pztj_CraftStepsEntity : DEntityBase
  11. {
  12. /// <summary>
  13. /// 工艺Id
  14. /// </summary>
  15. public string CraftId { get; set; }
  16. /// <summary>
  17. /// 步骤
  18. /// </summary>
  19. public int Step { get; set; }
  20. /// <summary>
  21. /// 功能描述
  22. /// </summary>
  23. [SugarColumn(IsNullable = true)]
  24. public string Description { get; set; }
  25. /// <summary>
  26. /// 设备产品功能Id
  27. /// </summary>
  28. [SugarColumn(IsNullable = true)]
  29. public string DeviceProductFunctionId { get; set; }
  30. /// <summary>
  31. /// 功能参数
  32. /// </summary>
  33. [SugarColumn(IsNullable = true, ColumnDataType= "longtext")]
  34. public string Params { get; set; }
  35. }
  36. }