Merge remote-tracking branch 'origin/cc_20230520_partner' into cc_20230520_partner

This commit is contained in:
pserimal
2023-06-08 16:10:10 +08:00
49 changed files with 989 additions and 2656 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;
}
}