⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iunitmanager.java

📁 负责公文的传输及一些处理功能
💻 JAVA
字号:
package com.example.gw.unit;

import com.example.exception.LogicException;
import com.example.businessmodel.Page;
import java.util.List;
public interface IUnitManager {
	public void saveUnit(Unit unit) throws LogicException;
	public int validateUnit(Unit u) throws LogicException;
    public Page getDepartList(String unitId,int start,int rownum)throws Exception;
	public String getDepartListXml(String unitId,int start,int rownum)throws Exception;
	public Page getUnitList(String unitId,int start,int rownum)throws Exception;
	public Object getUnit(int unitId)throws Exception;
	public void delUnit(Unit unit)throws Exception;
	public String delDept(Unit dept)throws Exception;
	public void updateUnit(Unit unit)throws Exception;
	public Unit findUnit(String unitId)throws Exception;
	public List getLowerUnitList(String unitId);
	public List getUpperUnitList(String unitId);
	public List getAllUnitList();
	public List getGroupUnitList(String unitId,String fatherId,String dwType,String content);
    public List getUnitList(String unitIds);
    public List getOtherUnitList(String unitId);
    public String getUnitListXml(String unitIds)throws Exception;
    public List getUnitListByWhere(String bywhere)throws Exception;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -