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

18 lines
368 B

  1. namespace BPASmartClient.FoodStationTest.Model.HK_PLC
  2. {
  3. public class HKDeviceWrite
  4. {
  5. public string Address { get; set; }
  6. public PlcVarType PlcVarType { get; set; } = PlcVarType.Bool;
  7. public object Value { get; set; }
  8. }
  9. public enum PlcVarType
  10. {
  11. Bool,
  12. Byte,
  13. Int,
  14. Dint,
  15. Real,
  16. }
  17. }