123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package com.kingdee.eas.custom.log;
- 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.eas.framework.ICoreBillBase;
- import com.kingdee.bos.Context;
- 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.framework.CoreBillBase;
- import com.kingdee.bos.metadata.entity.EntityViewInfo;
- import java.lang.String;
- import com.kingdee.eas.custom.log.app.*;
- import com.kingdee.bos.framework.*;
- public class SyncLog extends CoreBillBase implements ISyncLog
- {
- public SyncLog()
- {
- super();
- registerInterface(ISyncLog.class, this);
- }
- public SyncLog(Context ctx)
- {
- super(ctx);
- registerInterface(ISyncLog.class, this);
- }
- public BOSObjectType getType()
- {
- return new BOSObjectType("95A0551A");
- }
- private SyncLogController getController() throws BOSException
- {
- return (SyncLogController)getBizController();
- }
- /**
- *È¡¼¯ºÏ-System defined method
- *@return
- */
- public SyncLogCollection getSyncLogCollection() throws BOSException
- {
- try {
- return getController().getSyncLogCollection(getContext());
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- /**
- *È¡¼¯ºÏ-System defined method
- *@param view È¡¼¯ºÏ
- *@return
- */
- public SyncLogCollection getSyncLogCollection(EntityViewInfo view) throws BOSException
- {
- try {
- return getController().getSyncLogCollection(getContext(), view);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- /**
- *È¡¼¯ºÏ-System defined method
- *@param oql È¡¼¯ºÏ
- *@return
- */
- public SyncLogCollection getSyncLogCollection(String oql) throws BOSException
- {
- try {
- return getController().getSyncLogCollection(getContext(), oql);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- /**
- *ȡֵ-System defined method
- *@param pk ȡֵ
- *@return
- */
- public SyncLogInfo getSyncLogInfo(IObjectPK pk) throws BOSException, EASBizException
- {
- try {
- return getController().getSyncLogInfo(getContext(), pk);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- /**
- *ȡֵ-System defined method
- *@param pk ȡֵ
- *@param selector ȡֵ
- *@return
- */
- public SyncLogInfo getSyncLogInfo(IObjectPK pk, SelectorItemCollection selector) throws BOSException, EASBizException
- {
- try {
- return getController().getSyncLogInfo(getContext(), pk, selector);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- /**
- *ȡֵ-System defined method
- *@param oql ȡֵ
- *@return
- */
- public SyncLogInfo getSyncLogInfo(String oql) throws BOSException, EASBizException
- {
- try {
- return getController().getSyncLogInfo(getContext(), oql);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- }
|