|
|
@@ -179,10 +179,10 @@ public class WxCUserBasicInfoController extends BaseController { |
|
|
|
@ApiOperation("分页列表接口") |
|
|
|
@GetMapping("list") |
|
|
|
@ApiImplicitParams({ |
|
|
|
@ApiImplicitParam(name = "pageNum", value = "页数", dataType = "int", paramType = "query", required = true), |
|
|
|
@ApiImplicitParam(name = "pageSize", value = "每页条数", dataType = "int", paramType = "query", required = true)}) |
|
|
|
@ApiImplicitParam(name = "PageNum", value = "页数", dataType = "int", paramType = "query", required = true), |
|
|
|
@ApiImplicitParam(name = "PageSize", value = "每页条数", dataType = "int", paramType = "query", required = true)}) |
|
|
|
@SystemControllerLog(description = "会员管理-列表") |
|
|
|
public ResultData list(@ModelAttribute WxCUserBasicInfo wxCUserBasicInfo, Integer pageNum, Integer pageSize) { |
|
|
|
public ResultData list(@ModelAttribute WxCUserBasicInfo wxCUserBasicInfo, Integer PageNum, Integer PageSize) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxCUserBasicInfoController::list"); |
|
|
|
if (null == wxCUserBasicInfo) { |
|
|
|
wxCUserBasicInfo = new WxCUserBasicInfo(); |
|
|
@@ -198,7 +198,7 @@ public class WxCUserBasicInfoController extends BaseController { |
|
|
|
} |
|
|
|
} |
|
|
|
wxCUserBasicInfo.setSortColumns(BaseEntity.SortField.wcubiActiveTime_DESC); |
|
|
|
PageInfo<WxCUserBasicInfo> page = wxCUserBasicInfoService.listAsPage(wxCUserBasicInfo, pageNum, pageSize); |
|
|
|
PageInfo<WxCUserBasicInfo> page = wxCUserBasicInfoService.listAsPage(wxCUserBasicInfo, PageNum, PageSize); |
|
|
|
|
|
|
|
if (page.getSize() > 0) { |
|
|
|
for (WxCUserBasicInfo info : page.getList()) { |
|
|
|