大调整

This commit is contained in:
zhangchenbiao
2023-06-08 15:57:28 +08:00
parent 8e866554a1
commit 071725fb3d
44 changed files with 740 additions and 2352 deletions

View File

@@ -63,6 +63,8 @@ public class CommonConstants {
*/
public static final String SQUAREBRACKETSRIGHT = "]";
public static final String PATH_SPILT = "/";
/**
* rocketmq 消息最大重试次数
*/

View File

@@ -0,0 +1,30 @@
package com.cool.store.enums;
/**
* @author zhangchenbiao
* @FileName: DataSourceEnum
* @Description:
* @date 2023-06-08 15:34
*/
public enum DataSourceEnum {
SYNC(0, "同步"),
CREATE(1, "创建");
private Integer code;
private String message;
DataSourceEnum(Integer code, String message) {
this.code = code;
this.message = message;
}
public Integer getCode() {
return code;
}
public String getMessage() {
return message;
}
}