using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.KLMCoffee.Protocal { /// <summary> /// 饮品制作状态 /// </summary> public enum MakeStatus { 正在制作, 暂停, 取消, 完成 } }