123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace B20UVLog.Models
- {
- public class ServoAxisStautsOriginal
- {
- public int WSZ1AlarmCode { set; get; }
- public int WSZ1WarningCode { set; get; }
- public int WSZ2AlarmCode { set; get; }
- public int WSZ2WarningCode { set; get; }
- public int WSZ3AlarmCode { set; get; }
- public int WSZ3WarningCode { set; get; }
- public int WSZ4AlarmCode { set; get; }
- public int WSZ4WarningCode { set; get; }
- public int WSX1AlarmCode { set; get; }
- public int WSX1WarningCode { set; get; }
- public int WSX2AlarmCode { set; get; }
- public int WSX2WarningCode { set; get; }
- public int WSY1AlarmCode { set; get; }
- public int WSY1WarningCode { set; get; }
- public int WSY2AlarmCode { set; get; }
- public int WSY2WarningCode { set; get; }
- public int CSXLAlarmCode { set; get; }
- public int CSXLWarningCode { set; get; }
- public int CSYLAlarmCode { set; get; }
- public int CSYLWarningCode { set; get; }
- public int CSZLAlarmCode { set; get; }
- public int CSZLWarningCode { set; get; }
- public int CSXRAlarmCode { set; get; }
- public int CSXRWarningCode { set; get; }
- public int CSYRAlarmCode { set; get; }
- public int CSYRWarningCode { set; get; }
- public int CSZRAlarmCode { set; get; }
- public int CSZRWarningCode { set; get; }
- public int WSLLAMPAlarmCode { set; get; }
- public int WSLLAMPWarningCode { set; get; }
- public int WSSSHUTTERAlarmCode { set; get; }
- public int WSSSHUTTERWarningCode { set; get; }
- }
- }
|