|
|
@@ -5,6 +5,7 @@ import javax.annotation.PostConstruct; |
|
|
|
import cn.com.taiji.core.model.comm.protocol.SignServiceType; |
|
|
|
import cn.com.taiji.core.model.comm.protocol.inss.InssServiceSystem; |
|
|
|
import cn.com.taiji.core.model.comm.protocol.inss.InssServiceType; |
|
|
|
import cn.com.taiji.inss.manager.handler.InstServiceHandler; |
|
|
|
import cn.com.taiji.inss.manager.handler.VfjServiceHandler; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
@@ -21,6 +22,8 @@ import cn.com.taiji.core.manager.comm.AbstractCommHandleManager; |
|
|
|
public class MyCommHandleManager extends AbstractCommHandleManager { |
|
|
|
@Autowired |
|
|
|
private VfjServiceHandler vfjServiceHandler; |
|
|
|
@Autowired |
|
|
|
private InstServiceHandler instServiceHandler; |
|
|
|
|
|
|
|
public MyCommHandleManager() { |
|
|
|
super(InssServiceSystem.INSS); |
|
|
@@ -29,6 +32,7 @@ public class MyCommHandleManager extends AbstractCommHandleManager { |
|
|
|
@PostConstruct |
|
|
|
public void init() { |
|
|
|
registerJsonService(vfjServiceHandler); |
|
|
|
registerJsonService(instServiceHandler); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |