RabbitConstant.java 376 B

1234567891011121314
  1. package com.sckw.robot.pojo.constant;
  2. /**
  3. * @author xucaiqin
  4. * @date 2024-04-01 19:50:29
  5. */
  6. public class RabbitConstant {
  7. public static final String AUTO_DELETE = "x-auto-delete";
  8. public static final String TOPIC_EXCHANGE_DATA = "amq.topic";
  9. public static final String ROUTER_KEY = ".robot.NOTICE.STATUS.*";
  10. public static final String QUEUE = "queue";
  11. }