Bladeren bron

Merge branch 'master' of http://121.42.53.174:3000/jiapeng/platformConsole

XMTT 6 jaren geleden
bovenliggende
commit
1a2a6bc905

+ 3 - 3
src/main/java/com/ekexiu/project/platform/organization/OrgService.java

@ -26,8 +26,8 @@ import java.util.Map;
26 26
@Path("/org")
27 27
public class OrgService {
28 28
29
	private String syncUrl = "http://www.ekexiu.com/ajax/platform/ids/buttedOrgs?pid=";
30
	private String infoUrl = "http://www.ekexiu.com/ajax/org/";
29
	private String syncUrl = "http://192.168.3.233:81/ajax/platform/ids/buttedOrgs?pid=";
30
	private String infoUrl = "http://192.168.3.233:81/ajax/org/";
31 31
    @Autowrie
32 32
    private OrgDao orgDao;
33 33
@ -84,7 +84,7 @@ public class OrgService {
84 84
    	 
85 85
    	 if(buttedProfessores.size()>0){
86 86
    		 for(Map<String,String> map:buttedProfessores){
87
    			 String uid = map.get("uid");
87
    			 String uid = map.get("oid");
88 88
    			 if(uid!= null){
89 89
    				 Organization p = null;
90 90
    				for(Organization pe:existsList){

+ 2 - 2
src/main/java/com/ekexiu/project/platform/professor/ProfessorService.java

@ -25,8 +25,8 @@ import java.util.Map;
25 25
@Path("/professor")
26 26
public class ProfessorService {
27 27
28
	private String syncUrl = "http://www.ekexiu.com/ajax/platform/ids/buttedProfessors?pid=";
29
	private String infoUrl = "http://www.ekexiu.com/ajax/professor/baseInfo/";
28
	private String syncUrl = "http://192.168.3.233:81/ajax/platform/ids/buttedProfessors?pid=";
29
	private String infoUrl = "http://192.168.3.233:81/ajax/professor/baseInfo/";
30 30
31 31
	@Autowrie
32 32
	private ProfessorDao professorDao;