| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
-
- using SKMC.Api.Device.Config;
- namespace SKMC.Api.Machine.Config
- {
- /// <summary>
- /// 机台目录配置
- /// </summary>
- public class MachineCatalogConfig : ConfigBase
- {
- public bool IsChecked { get; set; }
- }
- /// <summary>
- /// 机台参数配置
- /// </summary>
- public class MachineParamConfig : ConfigBase
- {
- private string _group;
- public string Group
- {
- get { return _group; }
- set { _group = value; RaisePropertyChanged(); }
- }
- private string _value;
- public string Value
- {
- get { return _value; }
- set { _value = value; RaisePropertyChanged(); }
- }
- }
- ///<summary> 机台原点偏差配置 </summary>
- public class MachineOffsetConfig : ConfigBase
- {
- private double _Offset;
- public double Offset
- {
- get { return _Offset; }
- set { _Offset = value; RaisePropertyChanged(); }
- }
- private long _id;
- public long Id
- {
- get { return _id; }
- set { _id = value; RaisePropertyChanged(); }
- }
- private int _axis_No;
- public int Axis_No
- {
- get { return _axis_No; }
- set { _axis_No = value; RaisePropertyChanged(); }
- }
- private int _merged;
- public int Merged
- {
- get { return _merged; }
- set { _merged = value; RaisePropertyChanged(); }
- }
- }
- }
|