Compare commits

..

No commits in common. "ab9e30b755ad842f730ea07be1d8abbf5c97cf7b" and "75683440de54c4d0cea2406e7b88e2ec56811bee" have entirely different histories.

2 changed files with 4 additions and 5 deletions

View File

@ -41,6 +41,7 @@ public class TsingtaoDataResourceService extends AbstractDataResourceService {
Integer size = dto.getPageSize();
String pxcol = dto.getOrderField();
String order = dto.getOrderType();
String bmname = dto.getServiceName();
String zyname = dto.getServiceName();
if (page == null) page = 1;
@ -54,6 +55,9 @@ public class TsingtaoDataResourceService extends AbstractDataResourceService {
" <soap:Body><ZWCJ_mainPort xmlns=\"http://tempuri.org/\">\n" +
String.format("<pagenum>%d</pagenum>\n <pagesize>%d</pagesize>\n",page, size) +
String.format("<pxcol>%s</pxcol>\n <order>%s</order>\n",pxcol, order);
if (bmname != null){
parame = parame + String.format("<bmname>%s</bmname>",bmname);
}
if (zyname != null) {
parame = parame + String.format("<zyname>%s</zyname>",zyname);
}

View File

@ -215,11 +215,6 @@ public interface Constant {
}
}
/**
* 项目部署地点
*/
String PROJECT_PLACE = "PROJECT_PLACE";
/**
* 项目运行地点
*/