终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

48 řádky
3.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.MorkCL.Model.Func
  7. {
  8. public class InitData
  9. {
  10. public static Dictionary<EFunc, FuncPar[]> FunParInit { get; private set; } = new()
  11. {
  12. { EFunc.搅拌启动,new FuncPar[] { new FuncPar() { ParName="搅拌速度", ParUnit ="HZ", ParDescribe="请输入 0 -- 60 HZ的频率", ParValue =60} } },
  13. { EFunc.搅拌停止,new FuncPar[0] },
  14. { EFunc.加热启动,new FuncPar[] { new FuncPar() { ParName="加热档位", ParUnit ="挡", ParDescribe="请输入 1 -- 8 挡的档位", ParValue =8} } },
  15. { EFunc.加热停止,new FuncPar[0] },
  16. { EFunc.添加主料,new FuncPar[]
  17. {
  18. new FuncPar() { ParName="主料名称", ParDescribe="请选择一种主料"} ,
  19. new FuncPar() { ParName="主料份量", ParUnit ="KG", ParDescribe="请输入主料的份量",ParValue=2} ,
  20. new FuncPar() { ParName="设置炒制位", ParDescribe="请输入 1--3 选择一个合适的炒制位置",ParValue=3},
  21. new FuncPar() { ParName="设置炒制时间",ParUnit="秒", ParDescribe="请设置一个合适的炒制时间",ParValue=60}
  22. }
  23. },
  24. { EFunc.添加调料,new FuncPar[]
  25. {
  26. new FuncPar() { ParName="调料名称", ParDescribe="请选择一种调料"} ,
  27. new FuncPar() { ParName="调料需求值", ParUnit ="g", ParDescribe="请输入调料的需求量",ParValue=100} ,
  28. new FuncPar() { ParName="设置炒制位", ParDescribe="请输入 1--3 选择一个合适的炒制位置",ParValue=3},
  29. new FuncPar() { ParName="设置炒制时间",ParUnit="秒", ParDescribe="请设置一个合适的炒制时间",ParValue=30}
  30. }
  31. },
  32. { EFunc.添加辅料,new FuncPar[] {
  33. new FuncPar() { ParName="辅料名称", ParDescribe= "请选择一种辅料" },
  34. new FuncPar() { ParName="设置炒制位", ParDescribe="请输入 1--3 选择一个合适的炒制位置",ParValue=3},
  35. new FuncPar() { ParName="设置炒制时间",ParUnit="秒", ParDescribe="请设置一个合适的炒制时间",ParValue=30}
  36. } },
  37. { EFunc.炒锅回原点位,new FuncPar[0] },
  38. { EFunc.出餐启动,new FuncPar[0] },
  39. { EFunc.炒锅清洗,new FuncPar[0] },
  40. //{ EFunc.炒锅回调料投料位置,new FuncPar[0] },
  41. { EFunc.去指定炒制位,new FuncPar[] { new FuncPar() { ParName = "设置炒制位", ParDescribe = "请输入 1--3 选择一个合适的炒制位置" , ParValue =3} } },
  42. { EFunc.炒制,new FuncPar[] { new FuncPar() { ParName = "设置炒制时间", ParUnit = "秒", ParDescribe = "请设置一个合适的炒制时间" , ParValue =60} } },
  43. };
  44. }
  45. }