1234567891011121314151617181920212223242526272829303132333435 |
- package com.kingdee.eas.custom.salarytemplate.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.util.*;
- import com.kingdee.eas.framework.CoreBaseInfo;
- import com.kingdee.bos.Context;
- import com.kingdee.eas.custom.salarytemplate.WagesChromatographyInfo;
- import com.kingdee.bos.dao.IObjectPK;
- import com.kingdee.bos.BOSException;
- import com.kingdee.bos.metadata.entity.SelectorItemCollection;
- import com.kingdee.eas.common.EASBizException;
- import com.kingdee.eas.framework.CoreBaseCollection;
- import com.kingdee.eas.custom.salarytemplate.WagesChromatographyCollection;
- import com.kingdee.bos.metadata.entity.EntityViewInfo;
- import java.lang.String;
- import com.kingdee.bos.framework.*;
- import com.kingdee.eas.hr.base.app.HRBillBaseController;
- import java.rmi.RemoteException;
- import com.kingdee.bos.framework.ejb.BizController;
- public interface WagesChromatographyController extends HRBillBaseController
- {
- public WagesChromatographyCollection getWagesChromatographyCollection(Context ctx) throws BOSException, RemoteException;
- public WagesChromatographyCollection getWagesChromatographyCollection(Context ctx, EntityViewInfo view) throws BOSException, RemoteException;
- public WagesChromatographyCollection getWagesChromatographyCollection(Context ctx, String oql) throws BOSException, RemoteException;
- public WagesChromatographyInfo getWagesChromatographyInfo(Context ctx, IObjectPK pk) throws BOSException, EASBizException, RemoteException;
- public WagesChromatographyInfo getWagesChromatographyInfo(Context ctx, IObjectPK pk, SelectorItemCollection selector) throws BOSException, EASBizException, RemoteException;
- public WagesChromatographyInfo getWagesChromatographyInfo(Context ctx, String oql) throws BOSException, EASBizException, RemoteException;
- }
|