|
|
@ -417,7 +417,7 @@ public class BlockFormEnumUtil {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 元素编辑信息
|
|
|
|
* 元素删除信息
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
public enum ELEMENT_DEL_STATUS {
|
|
|
|
public enum ELEMENT_DEL_STATUS {
|
|
|
@ -898,7 +898,8 @@ public class BlockFormEnumUtil {
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
public enum EXECUTION_TYPE {
|
|
|
|
public enum EXECUTION_TYPE {
|
|
|
|
SQL(10, "SQL", "SQL脚本"),
|
|
|
|
SQL(10, "SQL", "SQL脚本"),
|
|
|
|
CLASS_METHOD(20, "ClassMethod", "类方法");
|
|
|
|
CLASS_METHOD(20, "ClassMethod", "类方法"),
|
|
|
|
|
|
|
|
SCRIPT(30, "Script", "脚本"),;
|
|
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
private int value;
|
|
|
|
private String code;
|
|
|
|
private String code;
|
|
|
|