终端一体化运控平台
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.
 
 
 

51 lines
1.4 KiB

  1. using BPASmartClient.S7Net;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.JXJFoodBigStation.Model.Siemens
  8. {
  9. public class DL_Finish_DB
  10. {
  11. /// <summary>
  12. /// 配料完成信号确认
  13. /// </summary>
  14. public bool Ask_For_Finish_PLC { get; set; }
  15. public short[] StandbyFinish { get; set; } = new short[4];
  16. [Siemens(16)]
  17. /// <summary>
  18. /// 生产工单编码
  19. /// </summary>
  20. public string Order_No { get; set; } = "";
  21. [Siemens(16)]
  22. /// <summary>
  23. /// 产品名称
  24. /// </summary>
  25. public string Product_Code { get; set; } = "";
  26. public short job_No { get; set; }
  27. /// <summary>
  28. /// 原料信息
  29. /// </summary>
  30. public UDT1[] Material { get; set; } = new UDT1[20];
  31. public short ProcessTime { get; set; }
  32. /// <summary>
  33. /// 配料完成信号
  34. /// </summary>
  35. public bool Ask_For_Finish { get; set; }
  36. public short[] StandbyFinish1 { get; set; } = new short[4];
  37. }
  38. public class UDT1
  39. {
  40. [Siemens(6)]
  41. public string Material_Name { get; set; } = "";
  42. public float Material_Laying_Off_Weight { get; set; }
  43. public short Material_BarrelNum { get; set; }
  44. }
  45. }