终端一体化运控平台
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.
 
 
 

29 lines
729 B

  1. using Microsoft.AspNetCore.Http;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.MorkCL.Model
  8. {
  9. /// <summary>
  10. /// 委托通知主题
  11. /// </summary>
  12. internal class NotifyTopic
  13. {
  14. private static string Header => "MorkCL/";
  15. /// <summary>
  16. /// 机器人初始化
  17. /// </summary>
  18. public static string RobotInit => $"{Header}RobotInit";
  19. /// <summary>
  20. /// 本地配方下发通知
  21. /// </summary>
  22. public static string FormulaDistribution => $"{Header}FormulaDistribution";
  23. public static string ItemStorage => $"{Header}ItemStorage";
  24. }
  25. }