Merge remote-tracking branch 'origin/cc_20230520_partner' into cc_20230520_partner
This commit is contained in:
@@ -63,6 +63,8 @@ public class CommonConstants {
|
||||
*/
|
||||
public static final String SQUAREBRACKETSRIGHT = "]";
|
||||
|
||||
public static final String PATH_SPILT = "/";
|
||||
|
||||
/**
|
||||
* rocketmq 消息最大重试次数
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user