更新sql和代码规范修改

This commit is contained in:
moxiangrong
2024-02-18 15:26:45 +08:00
parent 6f5e6e4662
commit c132b68745
1293 changed files with 43935 additions and 18456 deletions

View File

@ -49,7 +49,8 @@ public class FlowableUtils {
/**
* 比较 两个bpmnModel 是否相同
* @param oldModel 老的bpmn model
*
* @param oldModel 老的bpmn model
* @param newModel 新的bpmn model
*/
public static boolean equals(BpmnModel oldModel, BpmnModel newModel) {
@ -59,9 +60,10 @@ public class FlowableUtils {
/**
* 把 bpmnModel 转换成 byte[]
* @param model bpmnModel
*
* @param model bpmnModel
*/
public static byte[] getBpmnBytes(BpmnModel model) {
public static byte[] getBpmnBytes(BpmnModel model) {
if (model == null) {
return new byte[0];
}

View File

@ -9,6 +9,7 @@ import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* flowable Web 过滤器,将 userId 设置到 {@link org.flowable.common.engine.impl.identity.Authentication} 中
*