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

📄 companyhandler.java

📁 j2ee源码
💻 JAVA
字号:
package com.leeman.wkexs.master.company.handler;

import java.util.ArrayList;

import com.leeman.wkexs.master.company.entity.CompanyVO;
import com.leeman.wkexs.master.company.entity.CompanySO;
import com.leeman.wkexs.master.privilege.entity.*;

/**
 * Remote interface for Enterprise Bean: CompanyHandler
 */
public interface CompanyHandler extends javax.ejb.EJBObject {
	public static final String JNDINAME = "ejb/com/leeman/wkexs/master/company/handler/CompanyHandlerHome";
	
	public CompanyVO get(String company_id) throws Exception;
	public ArrayList getList() throws Exception;
	public CompanyVO get(CompanyVO companyVO) throws Exception;
	public void add(CompanyVO companyVO) throws Exception;
	public ArrayList getList(CompanySO companySO, int fr, int maxRecords) throws Exception;
	public long getListCount(CompanySO companySO) throws Exception;
	public void delete(CompanyVO companyVO) throws Exception;
	public void update(CompanyVO companyVO) throws Exception;
	public boolean isExist(CompanyVO companyVO) throws Exception;
	public ArrayList getPrivList(CompanyVO companyVO, boolean r) throws Exception;
	public void insertPrivListQuery(PrivilegeVO privilegeVO) throws Exception;
	public void insertRoleDtlListQuery(PrivilegeVO privilegeVO) throws Exception;
	public void deletePrivListQuery(CompanyVO companyVO) throws Exception;
}

⌨️ 快捷键说明

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