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.
 
 

21 lines
534 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HBLConsole.Model
  7. {
  8. public enum EJuicer : int
  9. {
  10. 冷水温度传感器故障标志 = 1,
  11. 热水温度传感器故障标志 = 2,
  12. 制冷超时标志 = 3,
  13. 加热超时标志 = 4,
  14. 按键板和驱动板通信故障标志 = 5,
  15. 加热标志 = 6,
  16. 抽水_缺水标志 = 7,
  17. 上电后完成上电抽水和上电加热的待机标志 = 8,
  18. }
  19. }