DictConsts.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.xy.consts;
  2. /**
  3. * 字典编码常量
  4. *
  5. * @author 谭斌
  6. * @date 2023/02/15
  7. */
  8. public class DictConsts {
  9. /**
  10. * 设备类型
  11. */
  12. public static final String DEVICE_TYPE = "device_type";
  13. /**
  14. * 设备-运营状态
  15. */
  16. public static final String DEVICE_BUSY_STATUS = "device_busy_status";
  17. /**
  18. * 设备-冻结状态
  19. */
  20. public static final String DEVICE_FREEZE_STATUS = "device_freeze_status";
  21. /**
  22. * 设备-激活状态
  23. */
  24. public static final String DEVICE_ACTIVE_STATUS = "device_active_status";
  25. /**
  26. * 设备故障等级
  27. */
  28. public static final String DEVICE_FAULT_LEVEL = "device_fault_level";
  29. /**
  30. * 订单状态
  31. */
  32. public static final String ORDER_STATUS = "order_status";
  33. /**
  34. * 订单支付状态
  35. */
  36. public static final String ORDER_PAY_STATUS = "order_pay_status";
  37. /**
  38. * 订单支付类型
  39. */
  40. public static final String ORDER_PAY_TYPE = "order_pay_type";
  41. /**
  42. * 续费方式
  43. */
  44. public static final String ORDER_MERC_MANAGE_PAY_TYPE = "order_merc_manage_pay_type";
  45. /**
  46. * 费用支付状态
  47. */
  48. public static final String ORDER_MERC_MANAGE_STATUS = "order_merc_manage_status";
  49. public static final String ALGORITHM_TYPES = "algorithm_types";
  50. }