添加分页功能

liujun-2024-05-23-接口漏洞修复
liujun 2024-04-13 11:03:47 +08:00
parent 92dabf2a7c
commit b1dd0eb553
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
@Service
public class DwServiceImpl implements DwService {
@Value("dw.url")
@Value("${dw.url}")
private String url;
@ -40,6 +40,7 @@ public class DwServiceImpl implements DwService {
@Override
public Object getDictionary() throws Exception {
System.out.println(url + "dw/getDictionary");
return HttpUtil.post(url + "dw/getDictionary", "");
}
}