bug:分标委搜索
This commit is contained in:
+16
-16
@@ -52,7 +52,7 @@ public class PayCaseCommitteeSubitemController extends JeroController<PayCaseCom
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "分标委成员表-搜索")
|
||||
@ApiOperation(value="分标委成员表-搜索", notes="分标委成员表-搜索")
|
||||
@ApiOperation(value="分标委成员表-搜索", notes="分标委成员表-搜索",response = findByName.class)
|
||||
@GetMapping(value = "/find")
|
||||
public Result<?> find(@RequestParam(name="name",required =false) String name,
|
||||
@RequestParam(name="companyName",required =false) String companyName,
|
||||
@@ -70,21 +70,21 @@ public class PayCaseCommitteeSubitemController extends JeroController<PayCaseCom
|
||||
return Result.OK(pageList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表查询
|
||||
* @param pageNo
|
||||
* @param pageSize
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "分标委成员表-列表查询")
|
||||
@ApiOperation(value="分标委成员表-列表查询", notes="分标委成员表-列表查询")
|
||||
@GetMapping(value = "/list")
|
||||
public Result<?> queryPageList(@RequestParam(name="id",required =false) String id) {
|
||||
LambdaQueryWrapper<PayCaseCommitteeSubitem> lambdaQueryWrapper = new LambdaQueryWrapper();
|
||||
lambdaQueryWrapper.eq(PayCaseCommitteeSubitem::getCommitteeId,id);
|
||||
List<PayCaseCommitteeSubitem> list = payCaseCommitteeSubitemService.list(lambdaQueryWrapper);
|
||||
return Result.OK(list);
|
||||
}
|
||||
// /**
|
||||
// * 列表查询
|
||||
// * @param pageNo
|
||||
// * @param pageSize
|
||||
// * @return
|
||||
// */
|
||||
// @AutoLog(value = "分标委成员表-列表查询")
|
||||
// @ApiOperation(value="分标委成员表-列表查询", notes="分标委成员表-列表查询")
|
||||
// @GetMapping(value = "/list")
|
||||
// public Result<?> queryPageList(@RequestParam(name="id",required =false) String id) {
|
||||
// LambdaQueryWrapper<PayCaseCommitteeSubitem> lambdaQueryWrapper = new LambdaQueryWrapper();
|
||||
// lambdaQueryWrapper.eq(PayCaseCommitteeSubitem::getCommitteeId,id);
|
||||
// List<PayCaseCommitteeSubitem> list = payCaseCommitteeSubitemService.list(lambdaQueryWrapper);
|
||||
// return Result.OK(list);
|
||||
// }
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user