Selaa lähdekoodia

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

XMTT 6 vuotta sitten
vanhempi
commit
1a2a6bc905

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

26
@Path("/org")
26
@Path("/org")
27
public class OrgService {
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
    @Autowrie
31
    @Autowrie
32
    private OrgDao orgDao;
32
    private OrgDao orgDao;
33
33
84
    	 
84
    	 
85
    	 if(buttedProfessores.size()>0){
85
    	 if(buttedProfessores.size()>0){
86
    		 for(Map<String,String> map:buttedProfessores){
86
    		 for(Map<String,String> map:buttedProfessores){
87
    			 String uid = map.get("uid");
87
    			 String uid = map.get("oid");
88
    			 if(uid!= null){
88
    			 if(uid!= null){
89
    				 Organization p = null;
89
    				 Organization p = null;
90
    				for(Organization pe:existsList){
90
    				for(Organization pe:existsList){

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

25
@Path("/professor")
25
@Path("/professor")
26
public class ProfessorService {
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
	@Autowrie
31
	@Autowrie
32
	private ProfessorDao professorDao;
32
	private ProfessorDao professorDao;