| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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 SyncTranForIOTFacade extends AbstractBizCtrl implements ISyncTranForIOTFacade
- {
- public SyncTranForIOTFacade()
- {
- super();
- registerInterface(ISyncTranForIOTFacade.class, this);
- }
- public SyncTranForIOTFacade(Context ctx)
- {
- super(ctx);
- registerInterface(ISyncTranForIOTFacade.class, this);
- }
- public BOSObjectType getType()
- {
- return new BOSObjectType("C4BFC0BB");
- }
- private SyncTranForIOTFacadeController getController() throws BOSException
- {
- return (SyncTranForIOTFacadeController)getBizController();
- }
- /**
- *Iot平台部门信息同步-User defined method
- *@param billds 组织id
- */
- public void syncOrgUnitToIot(String billds) throws BOSException
- {
- try {
- getController().syncOrgUnitToIot(getContext(), billds);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- /**
- *Iot平台人员信息同步-User defined method
- *@param billds 人员id
- */
- public void syncPersonToIot(String billds) throws BOSException
- {
- try {
- getController().syncPersonToIot(getContext(), billds);
- }
- catch(RemoteException err) {
- throw new EJBRemoteException(err);
- }
- }
- }
|