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

52 lines
1.4 KiB

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