|
|
@@ -59,16 +59,16 @@ public class BizSqrEnterpriseApplyController {
|
|
59
|
59
|
@ApiImplicitParams({
|
|
60
|
60
|
@ApiImplicitParam(name = "pageNum", value = "页码", paramType = "query"),
|
|
61
|
61
|
@ApiImplicitParam(name = "pageSize", value = "每页条数", paramType = "query"),
|
|
62
|
|
- @ApiImplicitParam(name = "dwdm", value = "单位代码", paramType = "query"),
|
|
|
62
|
+ @ApiImplicitParam(name = "dwmc", value = "单位名称", paramType = "query"),
|
|
63
|
63
|
@ApiImplicitParam(name = "applyType", value = "申请类型", paramType = "query")
|
|
64
|
64
|
|
|
65
|
65
|
})
|
|
66
|
|
- public PageInfo<BizSqrEnterpriseApply> page(Integer pageNum, Integer pageSize,String dwdm,Integer applyType) {
|
|
|
66
|
+ public PageInfo<BizSqrEnterpriseApply> page(Integer pageNum, Integer pageSize,String dwmc,Integer applyType) {
|
|
67
|
67
|
|
|
68
|
68
|
if (pageNum!=null && pageSize!=null) {
|
|
69
|
69
|
PageHelper.startPage(pageNum, pageSize);
|
|
70
|
70
|
}
|
|
71
|
|
- List<BizSqrEnterpriseApply> list = bizGrQeApplyService.findByPage(dwdm,applyType);
|
|
|
71
|
+ List<BizSqrEnterpriseApply> list = bizGrQeApplyService.findByPage(dwmc,applyType);
|
|
72
|
72
|
PageInfo<BizSqrEnterpriseApply> pageInfo = new PageInfo<BizSqrEnterpriseApply>(list);
|
|
73
|
73
|
return pageInfo;
|
|
74
|
74
|
}
|