using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Model.咖啡机.Enum { /// /// 饮品编号 /// public enum DrCoffeeDrinksCode :byte { 意式浓缩 = 1, 美式咖啡 = 2, 卡布奇诺 = 3, 两杯意式浓缩 = 4, 拿铁咖啡 = 5, 热牛奶 = 6, 热牛沫 = 7, 热水 = 8, 澳白咖啡 = 9, 玛琪雅朵 = 10, 拿铁玛琪雅朵 = 11, 大壶咖啡 = 12, 现磨咖啡 = 13, 冰美式 = 14, 芮斯崔朵 = 15, 美式奶咖 = 16, 意式奶咖 = 17, 咖啡粉制作 = 18, 两杯芮斯崔朵 = 19, 两杯卡布奇诺 = 20, 两杯拿铁咖啡 = 21, 两杯澳白咖啡 = 22, 拿铁咖啡_冰 = 23, 美式咖啡_大 = 24, 奶盖 = 25, } }