|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.DRCoffee
- {
- public enum DrCoffeeAppStatus : byte
- {
- 应用无状态 = 0x00,
- 应用运行状态 = 0x01,
- 应用阶段成功状态 = 0x02,
- 应用完全成功状态 = 0x03,
- 应用失败状态 = 0x04,
- 应用等待状态_咖啡机不接受, 会回复失败状态=0x05
- }
- }
|