终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19 行
469 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.DRCoffee
  7. {
  8. public enum DrCoffeeAppStatus : byte
  9. {
  10. 应用无状态 = 0x00,
  11. 应用运行状态 = 0x01,
  12. 应用阶段成功状态 = 0x02,
  13. 应用完全成功状态 = 0x03,
  14. 应用失败状态 = 0x04,
  15. 应用等待状态_咖啡机不接受, 会回复失败状态=0x05
  16. }
  17. }