Commit 7a3aee83 authored by wuwz's avatar wuwz

app标签查询取消分页

parent 8a1444e4
......@@ -40,6 +40,10 @@ public class AppraiseLabelInfoBiz extends BaseBiz<AppraiseLabelInfoMapper, Appra
return ObjectRestResponse.succ(PageDataVO.pageInfo(pageInfo));
}
public ObjectRestResponse selectAppList(AppraiseLabeInfoDTO appraiseLabeInfoDTO){
return ObjectRestResponse.succ(getList(appraiseLabeInfoDTO));
}
public void saveOrUpd(AppraiseLabelInfo appraiseLabelInfo){
Long id = appraiseLabelInfo.getId() == null ? 0L :appraiseLabelInfo.getId();
if (id > 0L ){
......
......@@ -18,6 +18,6 @@ public class AppraiseLabelInfoController extends BaseController<AppraiseLabelInf
@GetMapping("tag/selectList")
@ApiModelProperty("标签列表")
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