定时同步组织代码

This commit is contained in:
zhal 2022-07-01 10:03:30 +08:00
parent fd478463d3
commit 55dffc9f9a
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ import com.actionsoft.apps.coe.pal.pal.repository.designer.util.CoeDesignerUtil;
import com.actionsoft.apps.coe.pal.pal.repository.model.impl.PALRepositoryModelImpl;
import com.actionsoft.apps.coe.pal.pal.repository.util.CoeProcessLevelUtil;
import com.actionsoft.apps.coe.pal.pal.repository.util.DiagramUtil;
import com.actionsoft.apps.coe.pal.pal.repository.util.DiagramsUtil;
import com.actionsoft.apps.coe.pal.pal.repository.util.ShapeUtil;
import com.actionsoft.bpms.commons.database.RowMap;
import com.actionsoft.bpms.schedule.IJob;
@ -221,7 +221,7 @@ public class SynchronousOrgJob implements IJob {
}
// 设置画布大小
DiagramUtil.setDiagramHeightWidth(definition, elements);
DiagramsUtil.setDiagramHeightWidth(definition, elements);
defineModel.setDefinition(definition.toString());
// 保存文件
CoeDesignerAPIManager.getInstance().storeDefinition(defineModel);// dao操作

View File

@ -4,7 +4,7 @@ import com.alibaba.fastjson.JSONObject;
import java.util.Iterator;
public class DiagramUtil {
public class DiagramsUtil {