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

100 lines
1.9 KiB
Java
Raw Normal View History

2024-03-29 16:30:07 +08:00
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;
/**
* IDsql
* @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;
}