添加分页功能
parent
92dabf2a7c
commit
b1dd0eb553
|
@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
|
||||||
@Service
|
@Service
|
||||||
public class DwServiceImpl implements DwService {
|
public class DwServiceImpl implements DwService {
|
||||||
|
|
||||||
@Value("dw.url")
|
@Value("${dw.url}")
|
||||||
private String url;
|
private String url;
|
||||||
|
|
||||||
|
|
||||||
|
@ -40,6 +40,7 @@ public class DwServiceImpl implements DwService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getDictionary() throws Exception {
|
public Object getDictionary() throws Exception {
|
||||||
|
System.out.println(url + "dw/getDictionary");
|
||||||
return HttpUtil.post(url + "dw/getDictionary", "");
|
return HttpUtil.post(url + "dw/getDictionary", "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue