integrated_traffic/src/main/java/com/zcloud/service/system/DictionariesService.java

152 lines
3.5 KiB
Java
Raw Normal View History

2024-01-03 11:04:18 +08:00
package com.zcloud.service.system;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import com.zcloud.entity.system.Dictionaries;
import java.util.List;
/**
*
* luoxiaobao
* www.qdkjchina.com
*/
public interface DictionariesService {
/**
* ()
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Dictionaries> listAllDict(String parentId) throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findByName(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public PageData findByBianma(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
/**
* ID
* @param parentId
* @return
* @throws Exception
*/
public List<Dictionaries> listSubDictByParentId(String parentId) throws Exception;
2024-01-05 08:51:44 +08:00
public List<PageData> getTreeById(String id) throws Exception;
2024-01-03 11:04:18 +08:00
/**
* ID
* @param pd
* @return
* @throws Exception
*/
public List<Dictionaries> listSubDictByParent(PageData pd) throws Exception;
/**
* ID()
* @param pd
* @return
* @throws Exception
*/
List<Dictionaries> listSubDictByParentIdAndCourseware(PageData pd) throws Exception;
/**
* ()
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Dictionaries> listAllDictToCreateCode(String parentId) throws Exception;
public List<PageData> listAllDictToSelect(String parentId, List<PageData> zdicPdList) throws Exception ;
/**
* @param pd
* @throws Exception
*/
public PageData findFromTbs(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void delete(PageData pd)throws Exception;
/**
* IDS
* @param dictionariesIds
* @return
* @throws Exception
*/
public List<Dictionaries> listSubDictByIds(String[] dictionariesIds) throws Exception;
/**(线使)
* @param pd
* @throws Exception
*/
public PageData saveSelf(PageData pd)throws Exception;
public PageData saveByZidongxinzeng(PageData pd)throws Exception;
2024-01-04 09:07:20 +08:00
/**
* @param name
* @throws Exception
*/
public PageData findByName(String name ,String PARENT_ID)throws Exception;
/**
*
* @param id
* @return
* @throws Exception
*/
public PageData getRootDicById(String id)throws Exception;
2024-01-03 11:04:18 +08:00
/**
* id
* @param parentId
* @return
* @throws Exception
*/
public List<PageData> listSubDictByParentIdAndSunCount(String parentId) throws Exception;
/**
* @param pd
* @throws Exception
*/
public List<PageData> getTreeFromBelow(List<PageData> nextList,PageData pd)throws Exception;
2024-01-04 09:07:20 +08:00
public void importAreaFromJson();
2024-01-03 11:04:18 +08:00
}