终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

24 řádky
490 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.JXJFoodSmallStation.Model.HK_PLC
  7. {
  8. public class HKDeviceWrite
  9. {
  10. public string Address { get; set; }
  11. public PlcVarType PlcVarType { get; set; } = PlcVarType.Bool;
  12. public object Value { get; set; }
  13. }
  14. public enum PlcVarType
  15. {
  16. Bool,
  17. Byte,
  18. Int,
  19. Dint,
  20. Real,
  21. }
  22. }