feat: 【工作流】--加签

This commit is contained in:
kehaiyou
2023-09-29 14:57:28 +08:00
parent f088fdff84
commit 7d497ce09b
11 changed files with 508 additions and 25 deletions

View File

@ -0,0 +1,48 @@
package cn.iocoder.yudao.framework.common.enums;
/**
* 符号常量
*/
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="\\.";
}