| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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
- {
- /// <summary>
- /// 料仓工作任务
- /// </summary>
- public class FeederStockWork : BindableBase
- {
- private int _Step;
- /// <summary>
- /// 步骤
- /// </summary>
- public int Step
- {
- get { return _Step; }
- set { SetProperty(ref _Step, value); }
- }
- private VibrationFunction _Function;
- /// <summary>
- /// 功能码
- /// </summary>
- public VibrationFunction Function
- {
- get { return _Function; }
- set { SetProperty(ref _Function, value); }
- }
- private int _RegisterIndex;
- /// <summary>
- /// 寄存器类型
- /// </summary>
- public int RegisterIndex
- {
- get { return _RegisterIndex; }
- set { SetProperty(ref _RegisterIndex, value); }
- }
- private int _Address;
- /// <summary>
- /// 寄存器地址
- /// </summary>
- public int Address
- {
- get { return _Address; }
- set { SetProperty(ref _Address, value); }
- }
- private int _Duration;
- /// <summary>
- /// 持续时间
- /// </summary>
- public int Duration
- {
- get { return _Duration; }
- set { SetProperty(ref _Duration, value); }
- }
- }
- }
|