|
@@ -4,6 +4,8 @@ import com.kingdee.bos.BOSException;
|
|
|
import com.kingdee.bos.Context;
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
|
|
+import java.rmi.RemoteException;
|
|
|
+
|
|
|
public class SyncTranForOAFacadeControllerBean extends AbstractSyncTranForOAFacadeControllerBean {
|
|
|
private static Logger logger =
|
|
|
Logger.getLogger(SyncTranForOAFacadeControllerBean.class);
|
|
@@ -17,7 +19,7 @@ public class SyncTranForOAFacadeControllerBean extends AbstractSyncTranForOAFaca
|
|
|
* @throws BOSException
|
|
|
*/
|
|
|
@Override
|
|
|
- protected void _syncOrgUnitToOA(Context ctx, String billds, actionTypeEnum action) throws BOSException {
|
|
|
+ protected void _syncOrgUnitToOA(Context ctx, String billds, ActionTypeEnum action) throws BOSException {
|
|
|
super._syncOrgUnitToOA(ctx, billds, action);
|
|
|
}
|
|
|
|
|
@@ -30,7 +32,7 @@ public class SyncTranForOAFacadeControllerBean extends AbstractSyncTranForOAFaca
|
|
|
* @throws BOSException
|
|
|
*/
|
|
|
@Override
|
|
|
- protected void _syncPositionToOA(Context ctx, String billds, actionTypeEnum action) throws BOSException {
|
|
|
+ protected void _syncPositionToOA(Context ctx, String billds, ActionTypeEnum action) throws BOSException {
|
|
|
super._syncPositionToOA(ctx, billds, action);
|
|
|
}
|
|
|
|
|
@@ -43,7 +45,8 @@ public class SyncTranForOAFacadeControllerBean extends AbstractSyncTranForOAFaca
|
|
|
* @throws BOSException
|
|
|
*/
|
|
|
@Override
|
|
|
- protected void _syncPersonToOA(Context ctx, String billds, actionTypeEnum action) throws BOSException {
|
|
|
+ protected void _syncPersonToOA(Context ctx, String billds, ActionTypeEnum action) throws BOSException {
|
|
|
super._syncPersonToOA(ctx, billds, action);
|
|
|
}
|
|
|
+
|
|
|
}
|