aeac9b390a70b4d946c05fb9d8403d02db9f82d7.svn-base 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package com.kingdee.eas.custom.salarytemplate.app;
  2. import com.kingdee.bos.BOSException;
  3. //import com.kingdee.bos.metadata.*;
  4. import com.kingdee.bos.framework.*;
  5. import com.kingdee.bos.util.*;
  6. import com.kingdee.bos.Context;
  7. import com.kingdee.bos.util.*;
  8. import com.kingdee.eas.framework.CoreBaseInfo;
  9. import com.kingdee.bos.Context;
  10. import com.kingdee.eas.custom.salarytemplate.WagesChromatographyInfo;
  11. import com.kingdee.bos.dao.IObjectPK;
  12. import com.kingdee.bos.BOSException;
  13. import com.kingdee.bos.metadata.entity.SelectorItemCollection;
  14. import com.kingdee.eas.common.EASBizException;
  15. import com.kingdee.eas.framework.CoreBaseCollection;
  16. import com.kingdee.eas.custom.salarytemplate.WagesChromatographyCollection;
  17. import com.kingdee.bos.metadata.entity.EntityViewInfo;
  18. import java.lang.String;
  19. import com.kingdee.bos.framework.*;
  20. import com.kingdee.eas.hr.base.app.HRBillBaseController;
  21. import java.rmi.RemoteException;
  22. import com.kingdee.bos.framework.ejb.BizController;
  23. public interface WagesChromatographyController extends HRBillBaseController
  24. {
  25. public WagesChromatographyCollection getWagesChromatographyCollection(Context ctx) throws BOSException, RemoteException;
  26. public WagesChromatographyCollection getWagesChromatographyCollection(Context ctx, EntityViewInfo view) throws BOSException, RemoteException;
  27. public WagesChromatographyCollection getWagesChromatographyCollection(Context ctx, String oql) throws BOSException, RemoteException;
  28. public WagesChromatographyInfo getWagesChromatographyInfo(Context ctx, IObjectPK pk) throws BOSException, EASBizException, RemoteException;
  29. public WagesChromatographyInfo getWagesChromatographyInfo(Context ctx, IObjectPK pk, SelectorItemCollection selector) throws BOSException, EASBizException, RemoteException;
  30. public WagesChromatographyInfo getWagesChromatographyInfo(Context ctx, String oql) throws BOSException, EASBizException, RemoteException;
  31. }