|
@ -54,7 +54,7 @@ public class AdapterController extends BaseController {
|
|
|
@RequestParam(value = "rows", required = false) Integer rows,
|
|
|
@ApiParam(name = "page", value = "Start position of result set. Must be an integer")
|
|
|
@RequestParam(value = "page", required = false) Integer page) {
|
|
|
return adapterSchemeService.getEntityList(AdapterSchemeModel.class, condition, order, rows, page - 1, ErrorCode.GetSchemeListFailed);
|
|
|
return adapterSchemeService.getEntityList(AdapterSchemeModel.class, condition, order, rows, page, ErrorCode.GetSchemeListFailed);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@ -130,7 +130,7 @@ public class AdapterController extends BaseController {
|
|
|
@RequestParam(value = "rows", required = false) Integer rows,
|
|
|
@ApiParam(name = "page", value = "Start position of result set. Must be an integer")
|
|
|
@RequestParam(value = "page", required = false) Integer page) {
|
|
|
List<StandardModel> standardModelList = standardService.getList(condition, order, rows, page - 1);
|
|
|
List<StandardModel> standardModelList = standardService.getList(condition, order, rows, page);
|
|
|
DictionaryResult dictionaryResult = new DictionaryResult();
|
|
|
List<DictItem> detailModelList = new ArrayList<DictItem>();
|
|
|
for(StandardModel standardModel : standardModelList){
|
|
@ -165,7 +165,7 @@ public class AdapterController extends BaseController {
|
|
|
@RequestParam(value = "rows", required = false) Integer rows,
|
|
|
@ApiParam(name = "page", value = "Start position of result set. Must be an integer")
|
|
|
@RequestParam(value = "page", required = false) Integer page) {
|
|
|
List<StandardVersionModel> standardVersionModelList = standardVersionService.getList(standardId, condition, order, rows, page - 1);
|
|
|
List<StandardVersionModel> standardVersionModelList = standardVersionService.getVersionList(standardId, condition, order, rows, page);
|
|
|
DictionaryResult dictionaryResult = new DictionaryResult();
|
|
|
List<DictItem> detailModelList = new ArrayList<DictItem>();
|
|
|
for(StandardVersionModel standardVersionModel : standardVersionModelList){
|
|
@ -196,7 +196,7 @@ public class AdapterController extends BaseController {
|
|
|
@RequestParam(value = "rows", required = false) Integer rows,
|
|
|
@ApiParam(name = "page", value = "Start position of result set. Must be an integer")
|
|
|
@RequestParam(value = "page", required = false) Integer page) {
|
|
|
List<SystemOrganization> stdPublisherModelList = stdPublisherService.getList(condition, order, rows, page - 1);
|
|
|
List<SystemOrganization> stdPublisherModelList = stdPublisherService.getList(condition, order, rows, page);
|
|
|
DictionaryResult dictionaryResult = new DictionaryResult();
|
|
|
List<DictItem> detailModelList = new ArrayList<DictItem>();
|
|
|
for(SystemOrganization systemOrganization : stdPublisherModelList){
|