You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPASmartClient.Model;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
-
- namespace BPASmartClient.MorkS.Model
- {
- internal class MorksPar
- {
- public ObservableCollection<ParSet> parSets { get; set; } = new ObservableCollection<ParSet>();
-
- /// <summary>
- /// 加汤时间,单位秒
- /// </summary>
- public ushort AddSoupTime { get; set; } = 2;
-
- /// <summary>
- /// 倒面条件 煮面口忙碌数量
- /// </summary>
- public int InvertedNoodles_OpenBusyNum { get; set; } = 5;
-
- /// <summary>
- /// 间隔时间设定
- /// </summary>
- public ushort IntervalTime { get; set; }
- /// <summary>
- /// 反转抽汤时间设定
- /// </summary>
- public ushort BackwardSoupSootTime { get; set; }
- /// <summary>
- /// 反转过后再次出汤时间设定
- /// </summary>
- public ushort BackwardedOutSoupTime { get; set; }
- /// <summary>
- /// 未反转抽汤下时间设定
- /// </summary>
- public ushort UnBackwardSoupSootTime { get; set; }
-
- public ObservableCollection<ParSet> DishLibraryParSets { get; set; } = new ObservableCollection<ParSet>();
- }
- }
|