package jnpf.base.service; import com.baomidou.mybatisplus.extension.plugins.pagination.PageDTO; import jnpf.base.entity.PortalManageEntity; import jnpf.base.model.portalManage.PortalManagePage; import jnpf.base.model.portalManage.PortalManagePageDO; import jnpf.base.model.portalManage.PortalManagePrimary; import jnpf.base.model.portalManage.PortalManageVO; import java.util.List; /** *

* 门户管理 服务类 *

* * @author YanYu * @since 2023-02-16 */ public interface PortalManageService extends SuperService { void checkCreUp(PortalManageEntity portalManageEntity) throws Exception; PortalManageVO convertVO(PortalManageEntity entity); List getList(PortalManagePrimary primary); List getListByEnable(PortalManagePrimary primary); PageDTO getPage(PortalManagePage portalPagination); List getSelectList(PortalManagePage pmPage); List selectPortalBySystemIds(List systemIds, List collect); void createBatch(List primaryLit) throws Exception; }