package com.zcloud.service.study; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.entity.system.Mfolder; import java.util.List; /** * 说明: 文件管理接口 * 作者:zCloud * 官网: * @version */ public interface MfolderStipulateService { /**新增 * @param pd * @throws Exception */ public void save(PageData pd)throws Exception; /**删除 * @param pd * @throws Exception */ public void delete(PageData pd)throws Exception; /**修改 * @param pd * @throws Exception */ public void edit(PageData pd)throws Exception; /**批量操作 * @param pd * @throws Exception */ public void makeAll(PageData pd)throws Exception; /**列表 * @param page * @throws Exception */ public List list(Page page)throws Exception; /**列表(全部) * @param pd * @throws Exception */ public List listAll(PageData pd)throws Exception; /**通过id获取数据 * @param pd * @throws Exception */ public PageData findById(PageData pd)throws Exception; /** * 通过ID获取其子级列表 * @param parentId * @return * @throws Exception */ public List listByParentId(PageData pd) throws Exception; /** * 获取所有数据并填充每条数据的子级列表(递归处理) * @param MENU_ID * @return * @throws Exception */ public List listTree(PageData pd, String SHARE) throws Exception; /** * 获取所有数据并填充每条数据的子级列表(递归处理)app * @param MENU_ID * @return * @throws Exception */ public List appListTree(PageData pd, String SHARE) throws Exception; /** * 通过父ID查询sql * @param PARENTID * @return * @throws Exception */ public List findByParentId(String PARENTID) throws Exception; /**法规库 * APP查询法规库 * @param pd * @return * @throws Exception */ List findByName(PageData pd) throws Exception; }