package com.kingdee.eas.custom.salarytemplate; import com.kingdee.bos.framework.ejb.EJBRemoteException; import com.kingdee.bos.util.BOSObjectType; import java.rmi.RemoteException; import com.kingdee.bos.framework.AbstractBizCtrl; import com.kingdee.bos.orm.template.ORMObject; import com.kingdee.bos.util.*; import com.kingdee.eas.framework.CoreBaseInfo; import com.kingdee.bos.Context; import com.kingdee.eas.hr.base.HRBillBaseEntry; import com.kingdee.bos.dao.IObjectPK; import com.kingdee.bos.BOSException; import com.kingdee.bos.metadata.entity.SelectorItemCollection; import com.kingdee.eas.hr.base.IHRBillBaseEntry; import com.kingdee.eas.common.EASBizException; import com.kingdee.eas.framework.CoreBaseCollection; import com.kingdee.bos.metadata.entity.EntityViewInfo; import java.lang.String; import com.kingdee.eas.custom.salarytemplate.app.*; import com.kingdee.bos.framework.*; public class WagesChromatographyEntry extends HRBillBaseEntry implements IWagesChromatographyEntry { public WagesChromatographyEntry() { super(); registerInterface(IWagesChromatographyEntry.class, this); } public WagesChromatographyEntry(Context ctx) { super(ctx); registerInterface(IWagesChromatographyEntry.class, this); } public BOSObjectType getType() { return new BOSObjectType("022F2DAA"); } private WagesChromatographyEntryController getController() throws BOSException { return (WagesChromatographyEntryController)getBizController(); } /** *ȡֵ-System defined method *@param pk ȡֵ *@return */ public WagesChromatographyEntryInfo getWagesChromatographyEntryInfo(IObjectPK pk) throws BOSException, EASBizException { try { return getController().getWagesChromatographyEntryInfo(getContext(), pk); } catch(RemoteException err) { throw new EJBRemoteException(err); } } /** *ȡֵ-System defined method *@param pk ȡֵ *@param selector ȡֵ *@return */ public WagesChromatographyEntryInfo getWagesChromatographyEntryInfo(IObjectPK pk, SelectorItemCollection selector) throws BOSException, EASBizException { try { return getController().getWagesChromatographyEntryInfo(getContext(), pk, selector); } catch(RemoteException err) { throw new EJBRemoteException(err); } } /** *ȡֵ-System defined method *@param oql ȡֵ *@return */ public WagesChromatographyEntryInfo getWagesChromatographyEntryInfo(String oql) throws BOSException, EASBizException { try { return getController().getWagesChromatographyEntryInfo(getContext(), oql); } catch(RemoteException err) { throw new EJBRemoteException(err); } } /** *È¡¼¯ºÏ-System defined method *@return */ public WagesChromatographyEntryCollection getWagesChromatographyEntryCollection() throws BOSException { try { return getController().getWagesChromatographyEntryCollection(getContext()); } catch(RemoteException err) { throw new EJBRemoteException(err); } } /** *È¡¼¯ºÏ-System defined method *@param view È¡¼¯ºÏ *@return */ public WagesChromatographyEntryCollection getWagesChromatographyEntryCollection(EntityViewInfo view) throws BOSException { try { return getController().getWagesChromatographyEntryCollection(getContext(), view); } catch(RemoteException err) { throw new EJBRemoteException(err); } } /** *È¡¼¯ºÏ-System defined method *@param oql È¡¼¯ºÏ *@return */ public WagesChromatographyEntryCollection getWagesChromatographyEntryCollection(String oql) throws BOSException { try { return getController().getWagesChromatographyEntryCollection(getContext(), oql); } catch(RemoteException err) { throw new EJBRemoteException(err); } } }