|
@@ -33,7 +33,7 @@ import java.util.List;
|
|
|
* @Date: 2023-05-17
|
|
|
* @Version: V1.0
|
|
|
*/
|
|
|
-@Api(tags="委托信息")
|
|
|
+@Api(tags=".............委托信息")
|
|
|
@RestController
|
|
|
@RequestMapping("/weituo/itdmWeituoInfo")
|
|
|
@Slf4j
|
|
@@ -42,6 +42,19 @@ public class ItdmWeituoInfoController extends JeecgController<ItdmWeituoInfo, II
|
|
|
private IItdmWeituoInfoService itdmWeituoInfoService;
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value=".................分页查询已审核通过的列表", notes="分页查询已审核通过的列表")
|
|
|
+ @GetMapping(value = "/SHTGlist")
|
|
|
+ public Result<IPage<ItdmWeituoInfo>> querySHTGPageList(ItdmWeituoInfo itdmWeituoInfo,
|
|
|
+ @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
+ @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
+ HttpServletRequest req) {
|
|
|
+ itdmWeituoInfo.setShenheStatus(String.valueOf(1));//审核通过
|
|
|
+ QueryWrapper<ItdmWeituoInfo> queryWrapper = QueryGenerator.initQueryWrapper(itdmWeituoInfo, req.getParameterMap());
|
|
|
+ Page<ItdmWeituoInfo> page = new Page<ItdmWeituoInfo>(pageNo, pageSize);
|
|
|
+ IPage<ItdmWeituoInfo> pageList = itdmWeituoInfoService.page(page, queryWrapper);
|
|
|
+ return Result.OK(pageList);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**根据委托单位查询委托信息列表*/
|
|
|
@ApiOperation(value="根据委托单位查询委托信息列表", notes="根据委托单位查询委托信息列表")
|