终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

24 行
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. }