| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SKMC.Api.Machine.Model
- {
- public class MachineSlaveError : BindableBase
- {
- private string _vendorId;
- private string _errorCode;
- private int _errorvalue;
- private int _assistValue;
- private string _faultName;
- private string _reason;
- private string _confirmMethod;
- private string _handlingMeasures;
- private string _faultRange;
- public string VendorId
- {
- get { return _vendorId; }
- set { _vendorId = value; RaisePropertyChanged(); }
- }
- public string ErrorCode
- {
- get { return _errorCode; }
- set { _errorCode = value; RaisePropertyChanged(); }
- }
- public int ErrorValue
- {
- get { return _errorvalue; }
- set { _errorvalue = value; RaisePropertyChanged(); }
- }
- public int AssistValue
- {
- get { return _assistValue; }
- set { _assistValue = value; RaisePropertyChanged(); }
- }
- public string FaultName
- {
- get { return _faultName; }
- set { _faultName = value; RaisePropertyChanged(); }
- }
- public string Reason
- {
- get { return _reason; }
- set { _reason = value; RaisePropertyChanged(); }
- }
- public string ConfirmMethod
- {
- get { return _confirmMethod; }
- set { _confirmMethod = value; RaisePropertyChanged(); }
- }
- public string HandlingMeasures
- {
- get { return _handlingMeasures; }
- set { _handlingMeasures = value; RaisePropertyChanged(); }
- }
- public string FaultRange
- {
- get { return _faultRange; }
- set { _faultRange = value; RaisePropertyChanged(); }
- }
- }
- }
|