| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package com.kingdee.eas.custom.synctask;
- 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.BOSException;
- import com.kingdee.bos.util.*;
- import java.lang.String;
- import com.kingdee.bos.Context;
- import com.kingdee.bos.framework.*;
- import com.kingdee.eas.custom.synctask.*;
- public class SyncTranForMJFacade extends AbstractBizCtrl implements ISyncTranForMJFacade
- {
- public SyncTranForMJFacade()
- {
- super();
- registerInterface(ISyncTranForMJFacade.class, this);
- }
- public SyncTranForMJFacade(Context ctx)
- {
- super(ctx);
- registerInterface(ISyncTranForMJFacade.class, this);
- }
- public BOSObjectType getType()
- {
- return new BOSObjectType("135AEBA4");
- }
- private SyncTranForMJFacadeController getController() throws BOSException
- {
- return (SyncTranForMJFacadeController)getBizController();
- }
- /**
- *打卡记录同步-User defined method
- *@param beginDate 同步开始日期
- *@param endDate 同步结束日期
- */
- public void syncPunchRecordFromMJ(String beginDate, String endDate) throws BOSException
- {
- try {
- getController().syncPunchRecordFromMJ(getContext(), beginDate, endDate);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- }
|