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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.DosingHKProject.Model.HK_PLC
- {
- /// <summary>
- /// DB1 Write模块
- /// </summary>
- public class HKPlcCommWrite
- {
- public bool Reserve1 { get; set; }
- public bool Reserve2{ get; set; }
- public bool Cylinder_LoadOutput{ get; set; }
- public bool Cylinder_Station1Output{ get; set; }
- public bool Cylinder_Station2Output{ get; set; }
- public bool Cylinder_Station3Output{ get; set; }
- public bool Cylinder_Station4Output{ get; set; }
- public bool Cylinder_Station5Output{ get; set; }
- public bool Cylinder_Station6Output{ get; set; }
- public bool Cylinder_UnloadOutput{ get; set; }
- public bool Reserve3{ get; set; }
- public bool Reserve4{ get; set; }
- public bool Reserve5{ get; set; }
- public bool Reserve6{ get; set; }
- public bool Reserve7{ get; set; }
- public bool Reserve8{ get; set; }
- public bool TriColourLight_Yellow{ get; set; }
- public bool TriColourLight_Green{ get; set; }
- public bool TriColourLight_Red{ get; set; }
- public bool Buzzer{ get; set; }
- public bool Reserve9{ get; set; }
- public bool Reserve10{ get; set; }
- public bool Reserve11{ get; set; }
- public bool Reserve12{ get; set; }
- public bool Axis1_Start{ get; set; }
- public bool Axis2_Start{ get; set; }
- public bool Axis1_Stop{ get; set; }
- public bool Axis2_Stop{ get; set; }
- public bool Axis1_Reset{ get; set; }
- public bool Axis2_Reset{ get; set; }
- public bool Reserve13{ get; set; }
- public bool Reserve14{ get; set; }
- public short Axis1_Speed{ get; set; }
- public short Axis2_Speed{ get; set; }
- }
- }
|