终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 1 año
1234567891011121314151617181920212223
  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. }