integrated_traffic/src/main/java/com/zcloud/service/study/MfolderStipulateService.java

100 lines
1.9 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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<PageData> list(Page page)throws Exception;
/**列表(全部)
* @param pd
* @throws Exception
*/
public List<PageData> 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<Mfolder> listByParentId(PageData pd) throws Exception;
/**
* 获取所有数据并填充每条数据的子级列表(递归处理)
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Mfolder> listTree(PageData pd, String SHARE) throws Exception;
/**
* 获取所有数据并填充每条数据的子级列表(递归处理)app
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Mfolder> appListTree(PageData pd, String SHARE) throws Exception;
/**
* 通过父ID查询sql
* @param PARENTID
* @return
* @throws Exception
*/
public List<Mfolder> findByParentId(String PARENTID) throws Exception;
/**法规库
* APP查询法规库
* @param pd
* @return
* @throws Exception
*/
List<PageData> findByName(PageData pd) throws Exception;
}