BpmExtendClassManager.java 477 Bytes
package com.hotent.runtime.manager;

import com.hotent.base.manager.BaseManager;
import com.hotent.runtime.model.BpmExtendClass;

/**
 * 扩展jar包class管理模块 服务类
 *
 * @company 广州宏天软件股份有限公司
 * @author 超级管理员
 * @since 2021-01-19
 */
public interface BpmExtendClassManager extends BaseManager<BpmExtendClass> {

	BpmExtendClass getFormCacheBySimpleName(String simpleName);

	void removeFormCacheBySimpleName(String simpleName);
}