|
1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.Model.HK_PLC
- {
- public class HKDeviceWrite
- {
- public string Address { get; set; }
- public PlcVarType PlcVarType { get; set; } = PlcVarType.Bool;
- public object Value { get; set; }
- }
- public enum PlcVarType
- {
- Bool,
- Byte,
- Int,
- Dint,
- Real,
- }
- }
|