| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TeamAAS_VP.Enums;
- namespace TeamAAS_VP.Models
- {
- public class FeederClearWork : BindableBase
- {
- private string _Name;
- public string Name
- {
- get { return _Name; }
- set { SetProperty(ref _Name, value); }
- }
- private DateTime _CreateTime;
- public DateTime CreateTime
- {
- get { return _CreateTime; }
- set { SetProperty(ref _CreateTime, value); }
- }
- private VibrationFunction _BeforeOutput;
- /// <summary>
- /// 清料前输出信号
- /// </summary>
- public VibrationFunction BeforeOutput
- {
- get { return _BeforeOutput; }
- set { SetProperty(ref _BeforeOutput, value); }
- }
- private bool _BeforeScript;
- public bool BeforeScript
- {
- get { return _BeforeScript; }
- set { SetProperty(ref _BeforeScript, value); }
- }
- private VibrationFunction _BackOutput;
- /// <summary>
- /// 清料后输出信号
- /// </summary>
- public VibrationFunction BackOutput
- {
- get { return _BackOutput; }
- set { SetProperty(ref _BackOutput, value); }
- }
- private bool _BackScript;
- public bool BackScript
- {
- get { return _BackScript; }
- set { SetProperty(ref _BackScript, value); }
- }
- private FeederWorks _FeederWorks;
- /// <summary>
- /// Feeder振动集合
- /// </summary>
- public FeederWorks FeederWorks
- {
- get { return _FeederWorks; }
- set { SetProperty(ref _FeederWorks, value); }
- }
- private int _ClearCount;
- public int ClearCount
- {
- get { return _ClearCount; }
- set { SetProperty(ref _ClearCount, value); }
- }
- private int _VibrationCount;
- public int VibrationCount
- {
- get { return _VibrationCount; }
- set { SetProperty(ref _VibrationCount, value); }
- }
- }
- }
|