fix: 【工作流】按 review 修改代码

This commit is contained in:
youkehai
2023-10-10 10:46:16 +08:00
parent 6388950ab2
commit bc781d9473
9 changed files with 210 additions and 266 deletions

View File

@ -1,49 +0,0 @@
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="\\.";
}