16 lines
493 B
Java
16 lines
493 B
Java
package com.bwie.common.constants;
|
|
|
|
/**
|
|
* @Project boot-month
|
|
* @Author 张子豪
|
|
* @Date 2023/9/6 10:06-+
|
|
* @Description
|
|
*/
|
|
public class QueueConstants {
|
|
|
|
public static final String SEND_CODE_QUEUE = "send_code_queue";
|
|
public static final String SEND_CODE_PREVENT_REPEAT_ID = "send_code_prevent_repeat_id:";
|
|
public static final String BLOG_UPDATE_QUEUE = "blog_update_queue";
|
|
public static final String BLOG_UPDATE_PREVENT_REPEAT_ID = "blog_update_prevent_repeat_id:";
|
|
}
|