Commit 7a3aee83 authored by wuwz's avatar wuwz

app标签查询取消分页

parent 8a1444e4
...@@ -40,6 +40,10 @@ public class AppraiseLabelInfoBiz extends BaseBiz<AppraiseLabelInfoMapper, Appra ...@@ -40,6 +40,10 @@ public class AppraiseLabelInfoBiz extends BaseBiz<AppraiseLabelInfoMapper, Appra
return ObjectRestResponse.succ(PageDataVO.pageInfo(pageInfo)); return ObjectRestResponse.succ(PageDataVO.pageInfo(pageInfo));
} }
public ObjectRestResponse selectAppList(AppraiseLabeInfoDTO appraiseLabeInfoDTO){
return ObjectRestResponse.succ(getList(appraiseLabeInfoDTO));
}
public void saveOrUpd(AppraiseLabelInfo appraiseLabelInfo){ public void saveOrUpd(AppraiseLabelInfo appraiseLabelInfo){
Long id = appraiseLabelInfo.getId() == null ? 0L :appraiseLabelInfo.getId(); Long id = appraiseLabelInfo.getId() == null ? 0L :appraiseLabelInfo.getId();
if (id > 0L ){ if (id > 0L ){
......
...@@ -18,6 +18,6 @@ public class AppraiseLabelInfoController extends BaseController<AppraiseLabelInf ...@@ -18,6 +18,6 @@ public class AppraiseLabelInfoController extends BaseController<AppraiseLabelInf
@GetMapping("tag/selectList") @GetMapping("tag/selectList")
@ApiModelProperty("标签列表") @ApiModelProperty("标签列表")
public ObjectRestResponse applySelectList(AppraiseLabeInfoDTO appraiseLabeInfoDTO) { public ObjectRestResponse applySelectList(AppraiseLabeInfoDTO appraiseLabeInfoDTO) {
return baseBiz.selectList(appraiseLabeInfoDTO); return baseBiz.selectAppList(appraiseLabeInfoDTO);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment