Merge remote-tracking branch 'origin/master'

This commit is contained in:
YunaiV
2023-10-12 21:59:04 +08:00
15 changed files with 806 additions and 36 deletions

View File

@ -0,0 +1,49 @@
package cn.iocoder.yudao.framework.common.enums;
// TODO 这种简单的,暂时不用枚举哈,直接代码里写死就好啦;
/**
* 符号常量
*/
public interface SymbolConstant {
String D =",";
/**
* _
*/
String XH="_";
/**
* -
*/
String HG="-";
/**
* /
*/
String XG="/";
/**
* 箭头
*/
String ARROWHEAD="->";
/**
* 数组的开始元素
*/
String ARRAY_START="[";
/**
* 数组的结束元素
*/
String ARRAY_END="]";
/**
* null 字符串
*/
String NULL_STRING="null";
/**
* 点号
*/
String DIAN="\\.";
}