1234567891011121314151617181920212223242526272829303132333435 |
- package com.kingdee.eas.custom.bill.salary.app;
- import com.kingdee.bos.BOSException;
- //import com.kingdee.bos.metadata.*;
- import com.kingdee.bos.framework.*;
- import com.kingdee.bos.util.*;
- import com.kingdee.bos.Context;
- import com.kingdee.bos.BOSException;
- import com.kingdee.eas.hr.base.app.HRBillBaseEntryController;
- import com.kingdee.bos.dao.IObjectPK;
- import java.lang.String;
- import com.kingdee.bos.framework.*;
- import com.kingdee.eas.custom.bill.salary.SalaryBagEntryInfo;
- import com.kingdee.bos.Context;
- import com.kingdee.bos.metadata.entity.EntityViewInfo;
- import com.kingdee.eas.framework.CoreBaseCollection;
- import com.kingdee.eas.framework.CoreBaseInfo;
- import com.kingdee.eas.custom.bill.salary.SalaryBagEntryCollection;
- import com.kingdee.eas.common.EASBizException;
- import com.kingdee.bos.util.*;
- import com.kingdee.bos.metadata.entity.SelectorItemCollection;
- import java.rmi.RemoteException;
- import com.kingdee.bos.framework.ejb.BizController;
- public interface SalaryBagEntryController extends HRBillBaseEntryController
- {
- public SalaryBagEntryInfo getSalaryBagEntryInfo(Context ctx, IObjectPK pk) throws BOSException, EASBizException, RemoteException;
- public SalaryBagEntryInfo getSalaryBagEntryInfo(Context ctx, IObjectPK pk, SelectorItemCollection selector) throws BOSException, EASBizException, RemoteException;
- public SalaryBagEntryInfo getSalaryBagEntryInfo(Context ctx, String oql) throws BOSException, EASBizException, RemoteException;
- public SalaryBagEntryCollection getSalaryBagEntryCollection(Context ctx) throws BOSException, RemoteException;
- public SalaryBagEntryCollection getSalaryBagEntryCollection(Context ctx, EntityViewInfo view) throws BOSException, RemoteException;
- public SalaryBagEntryCollection getSalaryBagEntryCollection(Context ctx, String oql) throws BOSException, RemoteException;
- }
|